aboutsummaryrefslogtreecommitdiffhomepage
path: root/Paper-MojangAPI
diff options
context:
space:
mode:
authorJason Penilla <[email protected]>2021-06-14 18:50:13 -0700
committerJason Penilla <[email protected]>2021-06-14 18:56:02 -0700
commit0c732e2ef50c83414929fc9d3421d376e822ce42 (patch)
treeb87ca7bab6877a105026a6557af3ef4ea7b10780 /Paper-MojangAPI
parent09ead8b04372e515c7f415ddbbf471b5fd0636d2 (diff)
downloadPaper-0c732e2ef50c83414929fc9d3421d376e822ce42.tar.gz
Paper-0c732e2ef50c83414929fc9d3421d376e822ce42.zip
Put pom in correct location for Paperclip install to maven local feature
Diffstat (limited to 'Paper-MojangAPI')
-rw-r--r--Paper-MojangAPI/build.gradle.kts7
1 files changed, 7 insertions, 0 deletions
diff --git a/Paper-MojangAPI/build.gradle.kts b/Paper-MojangAPI/build.gradle.kts
index 536b4577cf..0fdb8a028b 100644
--- a/Paper-MojangAPI/build.gradle.kts
+++ b/Paper-MojangAPI/build.gradle.kts
@@ -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"])
+ }
+}