pushing also non -dev jar because userdev shenanigans
All checks were successful
publish / build (push) Successful in 3m15s
All checks were successful
publish / build (push) Successful in 3m15s
This commit is contained in:
parent
2f7de9a271
commit
c05dea128b
1 changed files with 8 additions and 1 deletions
|
@ -1,7 +1,8 @@
|
|||
plugins {
|
||||
`java-library`
|
||||
`maven-publish`
|
||||
id("io.papermc.paperweight.userdev") version "1.7.2"
|
||||
id("com.gradleup.shadow") version "8.3.3"
|
||||
id("io.papermc.paperweight.userdev") version "1.7.3"
|
||||
id("org.sonarqube") version "5.1.0.4882"
|
||||
}
|
||||
|
||||
|
@ -32,6 +33,9 @@ java {
|
|||
}
|
||||
|
||||
tasks {
|
||||
assemble {
|
||||
dependsOn("reobfJar")
|
||||
}
|
||||
compileJava {
|
||||
options.encoding = Charsets.UTF_8.name()
|
||||
|
||||
|
@ -69,6 +73,9 @@ publishing {
|
|||
artifactId = project.name
|
||||
version = project.version.toString()
|
||||
from(components["java"])
|
||||
artifact(tasks.reobfJar) {
|
||||
classifier = ""
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue