Skip to content

Commit

Permalink
Work on fixing dual jar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jediminer543 committed Oct 4, 2020
1 parent 25ff968 commit 433f1c8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,16 @@ jar {
}
}

task combiJar(type: Jar) {
from sourceSets.main.output
from sourceSets.syncfu.output
classifier "${mc_ver}-combi"
}

configure(combiJar) {
group = 'Build'
description = 'Create a combined mod syncfu jar'
}

task syncFuJar(type: Jar) {
from sourceSets.syncfu.output
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

mcmt_ver=0.17.54
mcmt_ver=0.18.59-DEV

mappings_ver =20200723-1.16.1
mappings_chan=snapshot
Expand Down

0 comments on commit 433f1c8

Please sign in to comment.