15 lines
235 B
Plaintext
Raw Permalink Normal View History

2019-12-17 21:18:54 -05:00
plugins {
java
`maven-publish`
}
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
2019-12-17 21:18:54 -05:00
publishing {
publications {
register<MavenPublication>("mavenJava") {
from(components["java"])
}
}
}