Skip to content

Commit

Permalink
Update Gradle to 7.5.1, and update dependencies (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdlaver authored May 25, 2023
1 parent e4c16a0 commit 8b81366
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.22' apply false
id 'io.github.gradle-nexus.publish-plugin' version '1.1.0'
id 'com.android.application' version '7.4.2' apply false
id 'com.android.library' version '7.4.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0'
}

nexusPublishing {
Expand Down
16 changes: 8 additions & 8 deletions digitalassetlinks/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

plugins {
id 'com.android.library'
id 'com.google.protobuf' version "0.9.1"
id 'com.google.protobuf' version "0.9.3"
id 'maven-publish'
id 'signing'
}
Expand Down Expand Up @@ -113,7 +113,7 @@ protobuf {
// runs fine with Rosetta.
archSuffix = ':osx-x86_64'
}
artifact = "com.google.protobuf:protoc:3.21.10$archSuffix" // Download from repositories
artifact = "com.google.protobuf:protoc:3.23.1$archSuffix" // Download from repositories
}
generateProtoTasks {
all().each { task ->
Expand Down Expand Up @@ -146,13 +146,13 @@ tasks.whenTaskAdded { task ->
}

dependencies {
compileOnly 'androidx.annotation:annotation:1.5.0'
testImplementation 'com.google.protobuf:protobuf-java:3.21.10'
compileOnly 'androidx.annotation:annotation:1.6.0'
testImplementation 'com.google.protobuf:protobuf-java:3.23.1'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-inline:4.9.0'
testImplementation 'org.robolectric:robolectric:4.9'
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
testImplementation 'org.mockito:mockito-inline:5.1.1'
testImplementation 'org.robolectric:robolectric:4.10.3'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test:rules:1.5.0'
androidTestImplementation 'androidx.test:runner:1.5.1'
androidTestImplementation 'androidx.test:runner:1.5.2'
androidTestImplementation 'junit:junit:4.13.2'
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 8b81366

Please sign in to comment.