Put pom in correct location for Paperclip install to maven local feature

This commit is contained in:
Jason Penilla
2021-06-14 18:50:13 -07:00
parent efc6fa6a04
commit fdd125c43e
4 changed files with 36 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
plugins {
`java-library`
`maven-publish`
}
java {
@@ -23,3 +24,9 @@ dependencies {
testImplementation("org.hamcrest:hamcrest-library:1.3")
testImplementation("org.ow2.asm:asm-tree:7.3.1")
}
configure<PublishingExtension> {
publications.create<MavenPublication>("maven") {
from(components["java"])
}
}