diff --git a/.github/workflows/deploy-snapshot.yml b/.github/workflows/deploy-snapshot.yml index dca7241..89b593a 100644 --- a/.github/workflows/deploy-snapshot.yml +++ b/.github/workflows/deploy-snapshot.yml @@ -23,7 +23,7 @@ jobs: - name: Set up Java uses: actions/setup-java@v1 with: - java-version: '11' + java-version: '17' - name: Build run: ./gradlew build diff --git a/.github/workflows/publish-maven-central.yml b/.github/workflows/publish-maven-central.yml index 1a2b638..9145d26 100644 --- a/.github/workflows/publish-maven-central.yml +++ b/.github/workflows/publish-maven-central.yml @@ -13,7 +13,7 @@ jobs: - name: Set up Java uses: actions/setup-java@v1 with: - java-version: '11' + java-version: '17' - name: Build run: ./gradlew build diff --git a/build.gradle b/build.gradle index 9aa52bf..7bd5e1d 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:7.0.3' + classpath 'com.android.tools.build:gradle:7.4.1' } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 05679dc..070cb70 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/shaky/build.gradle b/shaky/build.gradle index 460cea2..7976fc7 100644 --- a/shaky/build.gradle +++ b/shaky/build.gradle @@ -37,9 +37,9 @@ dependencies { implementation "com.google.android.material:material:1.1.0" implementation "androidx.recyclerview:recyclerview:1.2.1" implementation "androidx.legacy:legacy-support-v4:1.0.0" - implementation "androidx.annotation:annotation:1.2.0" + implementation "androidx.annotation:annotation:1.6.0" testImplementation 'junit:junit:4.13.2' - testImplementation 'org.mockito:mockito-core:3.11.2' - testImplementation 'org.robolectric:robolectric:4.6.1' + testImplementation 'org.mockito:mockito-core:3.12.4' + testImplementation 'org.robolectric:robolectric:4.9.2' }