aboutsummaryrefslogtreecommitdiff
path: root/spark-common
diff options
context:
space:
mode:
authorLuck <git@lucko.me>2021-06-13 12:11:16 +0100
committerLuck <git@lucko.me>2021-06-13 12:11:16 +0100
commit04b181fe86cd4942809420643e74dde81cfcdf10 (patch)
tree50cf0b63087e9a24bd827cf674ab74efc6a6353a /spark-common
parent6771fd491b2d971c6e97429139cb9d6558a59ccc (diff)
downloadspark-04b181fe86cd4942809420643e74dde81cfcdf10.tar.gz
spark-04b181fe86cd4942809420643e74dde81cfcdf10.tar.bz2
spark-04b181fe86cd4942809420643e74dde81cfcdf10.zip
Gradle 7, update fabric to 1.17
Diffstat (limited to 'spark-common')
-rw-r--r--spark-common/build.gradle26
1 files changed, 13 insertions, 13 deletions
diff --git a/spark-common/build.gradle b/spark-common/build.gradle
index 59e6439..f6b54f3 100644
--- a/spark-common/build.gradle
+++ b/spark-common/build.gradle
@@ -1,28 +1,28 @@
plugins {
- id 'com.google.protobuf' version '0.8.14'
+ id 'com.google.protobuf' version '0.8.16'
}
dependencies {
- compile project(':spark-api')
- compile 'com.github.jvm-profiling-tools:async-profiler:v2.0'
- compile 'org.ow2.asm:asm:7.1'
- compile 'com.google.protobuf:protobuf-javalite:3.15.6'
- compile 'com.squareup.okhttp3:okhttp:3.14.1'
- compile 'com.squareup.okio:okio:1.17.3'
- compile 'net.bytebuddy:byte-buddy-agent:1.11.0'
- compile 'org.tukaani:xz:1.8'
- compile('net.kyori:adventure-api:4.7.0') {
+ api project(':spark-api')
+ implementation 'com.github.jvm-profiling-tools:async-profiler:v2.0'
+ implementation 'org.ow2.asm:asm:7.1'
+ implementation 'com.google.protobuf:protobuf-javalite:3.15.6'
+ implementation 'com.squareup.okhttp3:okhttp:3.14.1'
+ implementation 'com.squareup.okio:okio:1.17.3'
+ implementation 'net.bytebuddy:byte-buddy-agent:1.11.0'
+ implementation 'org.tukaani:xz:1.8'
+ api('net.kyori:adventure-api:4.7.0') {
exclude(module: 'checker-qual')
exclude(module: 'annotations')
}
- compile('net.kyori:adventure-text-serializer-gson:4.7.0') {
+ api('net.kyori:adventure-text-serializer-gson:4.7.0') {
exclude(module: 'adventure-api')
exclude(module: 'gson')
}
- compile('net.kyori:adventure-text-serializer-legacy:4.7.0') {
+ api('net.kyori:adventure-text-serializer-legacy:4.7.0') {
exclude(module: 'adventure-api')
}
- compile('net.kyori:adventure-text-feature-pagination:4.0.0-SNAPSHOT') {
+ implementation('net.kyori:adventure-text-feature-pagination:4.0.0-SNAPSHOT') {
exclude(module: 'adventure-api')
}
compileOnly 'com.google.code.gson:gson:2.7'