Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
e356a35aa7
Don't create runnable platform jars anymore, since all they really do is increase build time. Also fix texts and Gradle deprecations. Also also publish common with its shadowed configuration, not the plain java components.
17 Zeilen
548 B
Plaintext
17 Zeilen
548 B
Plaintext
dependencies {
|
|
api(projects.viaversionApi)
|
|
api(projects.viaversionApiLegacy)
|
|
implementation(projects.compat.snakeyaml2Compat)
|
|
implementation(projects.compat.snakeyaml1Compat)
|
|
|
|
// Note: If manually starting tests doesn't work for you in IJ, change 'Gradle -> Run Tests Using' to 'IntelliJ IDEA'
|
|
testImplementation(rootProject.libs.netty)
|
|
testImplementation(rootProject.libs.guava)
|
|
testImplementation(rootProject.libs.snakeYaml2)
|
|
testImplementation(rootProject.libs.bundles.junit)
|
|
}
|
|
|
|
java {
|
|
withJavadocJar()
|
|
}
|