Fix velocity-natives module publishing, take 1

This commit is contained in:
Andrew Steinborn
2020-09-23 01:05:50 -04:00
parent dc48eb97f9
commit d2b65cb643

View File

@@ -15,3 +15,11 @@ dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}