Skip to content

Commit

Permalink
Bump common dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lucko committed Jun 9, 2024
1 parent 49bc094 commit 26b83dd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 14 deletions.
4 changes: 2 additions & 2 deletions spark-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ plugins {
version = '0.1-SNAPSHOT'

dependencies {
compileOnly 'org.checkerframework:checker-qual:3.8.0'
compileOnly 'org.jetbrains:annotations:20.1.0'
compileOnly 'org.checkerframework:checker-qual:3.44.0'
compileOnly 'org.jetbrains:annotations:24.1.0'
}

license {
Expand Down
19 changes: 7 additions & 12 deletions spark-common/build.gradle
Original file line number Diff line number Diff line change
@@ -1,25 +1,20 @@
import org.cadixdev.gradle.licenser.LicenseExtension

plugins {
id 'com.google.protobuf' version '0.9.1'
id 'com.google.protobuf' version '0.9.4'
}

license {
exclude '**/sampler/async/jfr/**'
}

extensions.configure(LicenseExtension.class) {
it.exclude {
exclude {
it.file.toString().startsWith(buildDir.toString())
}
}

dependencies {
api project(':spark-api')
implementation 'com.github.jvm-profiling-tools:async-profiler:v2.8.3'
implementation 'org.ow2.asm:asm:9.1'
implementation 'net.bytebuddy:byte-buddy-agent:1.11.0'
implementation 'com.google.protobuf:protobuf-javalite:3.21.11'
implementation 'org.ow2.asm:asm:9.7'
implementation 'net.bytebuddy:byte-buddy-agent:1.14.17'
implementation 'com.google.protobuf:protobuf-javalite:4.27.1'

implementation('me.lucko:bytesocks-java-client:1.0-20230828.145440-5') {
exclude(module: 'slf4j-api')
Expand All @@ -44,12 +39,12 @@ dependencies {
}
compileOnly 'com.google.code.gson:gson:2.7'
compileOnly 'com.google.guava:guava:19.0'
compileOnly 'org.checkerframework:checker-qual:3.8.0'
compileOnly 'org.checkerframework:checker-qual:3.44.0'
}

protobuf {
protoc {
artifact = 'com.google.protobuf:protoc:3.21.11'
artifact = 'com.google.protobuf:protoc:4.27.1'
}
generateProtoTasks {
all().each { task ->
Expand Down

0 comments on commit 26b83dd

Please sign in to comment.