2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2026-05-03 11:40:29 +00:00

maven publish commands aswell

This commit is contained in:
2024-05-06 21:27:37 +04:00
parent 7029552c02
commit 025b555457

View File

@@ -1,5 +1,6 @@
plugins { plugins {
`java-library` `java-library`
`maven-publish`
} }
dependencies { dependencies {
@@ -22,3 +23,11 @@ tasks {
filteringCharset = Charsets.UTF_8.name() filteringCharset = Charsets.UTF_8.name()
} }
} }
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}