Skip to content

[FSSDK-11464] chore: bump java sdk version 4.2.2 #509

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
May 30, 2025
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,16 @@ jobs:
run_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Setup Gradle cache
uses: gradle/gradle-build-action@v2
with:
gradle-version: wrapper
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Clean all modules
Expand Down
2 changes: 2 additions & 0 deletions android-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ dependencies {
exclude group: 'com.google.code.findbugs'
}

implementation "org.slf4j:slf4j-api:$slf4j_ver"

compileOnly "com.fasterxml.jackson.core:jackson-databind:$jacksonversion"
implementation "androidx.annotation:annotation:$annotations_ver"

Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ ext {
build_tools_version = "30.0.3"
min_sdk_version = 21
target_sdk_version = 33
java_core_ver = "4.2.0"
java_core_ver = "4.2.2"
android_logger_ver = "1.3.6"
jacksonversion= "2.11.2"
annotations_ver = "1.2.0"
Expand All @@ -88,6 +88,7 @@ ext {
androidx_test_core = "1.4.0"
androidx_test_rules = "1.4.0"
espresso_ver = "3.4.0"
slf4j_ver = "1.7.3"
}

task clean(type: Delete) {
Expand Down
3 changes: 3 additions & 0 deletions odp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ dependencies {
implementation "androidx.annotation:annotation:$annotations_ver"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "androidx.work:work-runtime:$work_runtime"
// Add SLF4J API for Logger interface
implementation "org.slf4j:slf4j-api:$slf4j_ver"

testImplementation "junit:junit:$junit_ver"
testImplementation "org.mockito:mockito-core:$mockito_ver"
Expand All @@ -74,4 +76,5 @@ dependencies {

androidTestImplementation "org.mockito:mockito-core:$mockito_ver"
androidTestImplementation "org.mockito:mockito-android:$mockito_ver"
androidTestImplementation "org.slf4j:slf4j-api:$slf4j_ver"
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import androidx.test.ext.junit.runners.AndroidJUnit4
import org.junit.Assert.assertEquals
import org.junit.Test
import org.junit.runner.RunWith
import org.mockito.Mockito.*
import org.mockito.Mockito.mock
import org.mockito.Mockito.verify

@RunWith(AndroidJUnit4::class)
Expand Down
Loading