mirror of
https://github.com/Minestom/Minestom.git
synced 2024-11-04 09:49:32 +01:00
381d89497a
* in order to make an omelet, you have to break a few eggs. aka absolutely decimate the gradle project * far more sane gradle, no publishing yet tho * attempt maven deploy * fix publish url and use snapshot repo * fix secret names * release, and properly set version * attempt to set group correctly * more gradle fixups
30 lines
581 B
Plaintext
30 lines
581 B
Plaintext
plugins {
|
|
`java-library`
|
|
// `maven-publish`
|
|
}
|
|
|
|
group = "net.minestom.testing"
|
|
// version declared by root project
|
|
|
|
dependencies {
|
|
api(rootProject)
|
|
|
|
api(libs.junit.api)
|
|
api(libs.junit.params)
|
|
api(libs.junit.suite.api)
|
|
runtimeOnly(libs.junit.engine)
|
|
runtimeOnly(libs.junit.suite.engine)
|
|
}
|
|
|
|
//publishing {
|
|
// publications {
|
|
// create<MavenPublication>("maven") {
|
|
// groupId = "net.minestom.testing"
|
|
// artifactId = "testing"
|
|
// version = "1.0"
|
|
//
|
|
// from(components["java"])
|
|
// }
|
|
// }
|
|
//}
|