2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2024-11-25 21:48:01 +00:00

maven publish commands aswell

This commit is contained in:
mohammed jasem alaajel 2024-05-06 21:27:37 +04:00
parent 7029552c02
commit 025b555457
Signed by: ham1255
GPG Key ID: EF343502046229F4

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"])
}
}
}