ViaVersion/common/build.gradle.kts

17 lines
548 B
Plaintext
Raw Normal View History

2021-02-17 17:50:47 +01:00
dependencies {
api(projects.viaversionApi)
api(projects.viaversionApiLegacy)
2023-02-27 14:16:40 +01:00
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)
2021-02-17 17:50:47 +01:00
}
2021-05-25 08:25:00 +02:00
java {
withJavadocJar()
}