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 09ead8b043
commit 0c732e2ef5
No known key found for this signature in database
GPG key ID: 0E75A301420E48F8
9 changed files with 51 additions and 17 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"])
}
}