Skip to content

Commit

Permalink
change: Do not build separate JARs for mod installation, include lice…
Browse files Browse the repository at this point in the history
…nse information
  • Loading branch information
jellysquid3 committed Apr 1, 2020
1 parent e9ac5e1 commit a4937f7
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,12 @@ tasks.withType(JavaCompile) {
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = "sources"
from sourceSets.main.allSource
}

jar {
from "LICENSE.txt"
from "LICENSE"
}

task modJar(type: RemappingJar, dependsOn: classes) {
classifier = "mod"
from sourceSets.main.output
from "LICENSE"
}

build.dependsOn modJar
Expand Down

0 comments on commit a4937f7

Please sign in to comment.