Skip to content

Commit

Permalink
Merge pull request #4 from CKATEPTb-minecraft/development
Browse files Browse the repository at this point in the history
update 1.20.2
  • Loading branch information
CKATEPTb authored Oct 17, 2023
2 parents 8ea0b57 + 7bb3779 commit f2964d0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group = "dev.ckateptb.minecraft"
version = "1.0.2-SNAPSHOT"
version = "1.1.0-SNAPSHOT"

val rootPackage = "${project.group}.${project.name.toLowerCase()}"
val internal = "${rootPackage}.internal"
Expand All @@ -40,7 +40,7 @@ dependencies {

tasks {
shadowJar {
// relocate("com", "${internal}.com")
relocate("org.spongepowered", "${internal}.org.spongepowered")
}
register<ProGuardTask>("shrink") {
dependsOn(shadowJar)
Expand All @@ -59,15 +59,15 @@ tasks {
}
build {
// Uncomment next line if u need only embed, without shrink
// dependsOn(reobfJar, shadowJar)
dependsOn(reobfJar, shadowJar)
// Comment next line if u need only embed, without shrink
dependsOn(reobfJar, "shrink")
// dependsOn(reobfJar, "shrink")
}
publish {
// Uncomment next line if u need only embed
// dependsOn(reobfJar, shadowJar)
dependsOn(reobfJar, shadowJar)
// Comment next line if u need only embed, without shrink
dependsOn(reobfJar, "shrink")
// dependsOn(reobfJar, "shrink")
}
withType<JavaCompile> {
options.encoding = "UTF-8"
Expand Down

0 comments on commit f2964d0

Please sign in to comment.