Skip to content

Commit

Permalink
Slight tidying of buildscript
Browse files Browse the repository at this point in the history
  • Loading branch information
NotActuallyTerry committed Jul 14, 2024
1 parent 43a8484 commit fac02f3
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ plugins {
id 'net.neoforged.moddev' version '1.0.8'
}

// jarJar.enable()

group = mod_group_id
base {
Expand All @@ -15,12 +14,11 @@ base {


ext.buildnumber = 0
version = "${mod_version}"

if (System.getenv('GITHUB_RUN_NUMBER')) {
project.buildnumber = System.getenv('GITHUB_RUN_NUMBER') as Integer
version = "${mod_version}+${buildnumber}-gha"
} else {
version = "${mod_version}"
}


Expand Down Expand Up @@ -50,9 +48,6 @@ dependencies {
exclude group: "com.google.guava"
}

if (System.getProperty("idea.sync.active") != "true") {
annotationProcessor 'org.spongepowered:mixin:0.8.5:processor'
}
}


Expand Down Expand Up @@ -118,10 +113,6 @@ tasks.withType(ProcessResources).configureEach {
}
}

tasks.named('jar', Jar).configure {
archiveClassifier = 'slim'
}


tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
Expand Down

0 comments on commit fac02f3

Please sign in to comment.