2022-10-10 20:44:50 +02:00
|
|
|
plugins {
|
2023-05-06 22:18:22 +02:00
|
|
|
`java-library`
|
|
|
|
// `maven-publish`
|
2022-10-10 20:44:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
group = "net.minestom.testing"
|
2023-05-06 22:18:22 +02:00
|
|
|
// version declared by root project
|
2022-10-10 20:44:50 +02:00
|
|
|
|
|
|
|
dependencies {
|
2023-05-06 22:18:22 +02:00
|
|
|
api(rootProject)
|
|
|
|
|
2022-10-10 20:44:50 +02:00
|
|
|
api(libs.junit.api)
|
|
|
|
api(libs.junit.params)
|
|
|
|
api(libs.junit.suite.api)
|
|
|
|
runtimeOnly(libs.junit.engine)
|
|
|
|
runtimeOnly(libs.junit.suite.engine)
|
|
|
|
}
|
|
|
|
|
2023-05-06 22:18:22 +02:00
|
|
|
//publishing {
|
|
|
|
// publications {
|
|
|
|
// create<MavenPublication>("maven") {
|
|
|
|
// groupId = "net.minestom.testing"
|
|
|
|
// artifactId = "testing"
|
|
|
|
// version = "1.0"
|
|
|
|
//
|
|
|
|
// from(components["java"])
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//}
|