Now using api() instead of implementation() so that dependencies become transitive

This commit is contained in:
jglrxavpok 2020-05-03 16:05:04 +02:00
parent c79d4c7874
commit 6ce82e2527
2 changed files with 13 additions and 13 deletions

View File

@ -1,5 +1,5 @@
plugins {
id 'java'
id 'java-library'
id 'net.ltgt.apt' version '0.10'
}
@ -19,27 +19,27 @@ dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
// https://mvnrepository.com/artifact/io.netty/netty-all
compile group: 'io.netty', name: 'netty-all', version: '4.1.48.Final'
api group: 'io.netty', name: 'netty-all', version: '4.1.48.Final'
implementation 'com.github.jhg023:Pbbl:1.0.1'
api 'com.github.jhg023:Pbbl:1.0.1'
// https://mvnrepository.com/artifact/it.unimi.dsi/fastutil
implementation group: 'it.unimi.dsi', name: 'fastutil', version: '8.3.0'
api group: 'it.unimi.dsi', name: 'fastutil', version: '8.3.0'
implementation 'com.github.Querz:NBT:4.1'
implementation 'com.github.luben:zstd-jni:1.4.3-1'
implementation 'com.esotericsoftware:reflectasm:1.11.9'
api 'com.github.Querz:NBT:4.1'
api 'com.github.luben:zstd-jni:1.4.3-1'
api 'com.esotericsoftware:reflectasm:1.11.9'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
api group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
compile 'com.github.TheMode:CommandBuilder:f893cfbfe4'
compile 'com.github.Minestom:minecraft-text:69fd808e92'
api 'com.github.TheMode:CommandBuilder:f893cfbfe4'
api 'com.github.Minestom:minecraft-text:69fd808e92'
// https://jitpack.io/#Articdive/Jnoise/1.0-SNAPSHOT
compile 'com.github.Articdive:Jnoise:1.0-SNAPSHOT'
api 'com.github.Articdive:Jnoise:1.0-SNAPSHOT'
// https://mvnrepository.com/artifact/javax.vecmath/vecmath
compile group: 'javax.vecmath', name: 'vecmath', version: '1.5.2' // Used for Fastnoise
api group: 'javax.vecmath', name: 'vecmath', version: '1.5.2' // Used for Fastnoise
}

View File

@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip