Add Maven publication for testing framework. (#1441)

This commit is contained in:
FluxCapacitor 2022-10-13 03:10:51 -04:00 committed by GitHub
parent 60751d546e
commit 9dab3183e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,18 @@
plugins {
id("java-library")
`maven-publish`
}
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "net.minestom.testing"
artifactId = "testing"
version = "1.0"
from(components["java"])
}
}
}
group = "net.minestom.testing"