mirror of
https://github.com/plexusorg/Plex.git
synced 2025-02-11 11:40:48 +00:00
Give the JARs nicer names
This commit is contained in:
parent
fbd3983c0b
commit
36877ae2f2
2 changed files with 9 additions and 0 deletions
|
@ -13,6 +13,10 @@ repositories {
|
|||
}
|
||||
}
|
||||
|
||||
jar {
|
||||
archiveBaseName.set("Plex-API")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly "org.projectlombok:lombok:1.18.22"
|
||||
annotationProcessor "org.projectlombok:lombok:1.18.22"
|
||||
|
|
|
@ -63,6 +63,7 @@ version = "1.1-SNAPSHOT"
|
|||
description = "Plex"
|
||||
|
||||
shadowJar {
|
||||
archiveBaseName.set("Plex")
|
||||
archiveClassifier.set("")
|
||||
relocate "org.bstats", "dev.plex"
|
||||
}
|
||||
|
@ -171,6 +172,10 @@ tasks {
|
|||
finalizedBy(buildProperties)
|
||||
}
|
||||
|
||||
jar {
|
||||
enabled = false
|
||||
}
|
||||
|
||||
javadoc {
|
||||
options.memberLevel = JavadocMemberLevel.PRIVATE
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue