ViaVersion/common/build.gradle.kts

26 lines
760 B
Plaintext
Raw Normal View History

2021-02-17 17:50:47 +01:00
dependencies {
api(projects.viaversionApi)
api(projects.viaversionApiLegacy)
2023-12-26 23:38:02 +01:00
api(rootProject.libs.text) {
exclude("com.google.code.gson", "gson")
}
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()
}
tasks.named<Jar>("sourcesJar") {
from(project(":viaversion-api").sourceSets.main.get().allSource)
}
publishShadowJar()