Skip to content

Commit

Permalink
add in library jar, use classifier for the type of jar not appendix
Browse files Browse the repository at this point in the history
  • Loading branch information
progwml6 committed Nov 23, 2013
1 parent 24beb22 commit 3c0fc6c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions build.gradle
Expand Up @@ -94,10 +94,16 @@ jar {
// because the normal output has been made to be obfuscated
task deobfJar(type: Jar) {
from sourceSets.main.output
appendix = 'deobf'
classifier = 'deobf'
}
task libJar(type: Jar) {
from(sourceSets.main.java) {
include "tconstruct/library/*"
}
classifier = 'lib'
}
artifacts {
archives deobfJar

archives libJar
}

0 comments on commit 3c0fc6c

Please sign in to comment.