Hopefully make gradle delete the everything jar after building and extracting the other jars.
This commit is contained in:
parent
0dd45ef9bb
commit
392f930a84
1 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
defaultTasks 'releaseJars'
|
||||
defaultTasks 'fullBuild'
|
||||
buildscript {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
@ -107,3 +107,8 @@ task releaseJars(type: Copy) {
|
|||
rename '-(.*)zip', '.zip'
|
||||
into '.'
|
||||
}
|
||||
|
||||
task fullBuild(type: Delete) {
|
||||
dependsOn 'releaseJars'
|
||||
delete reobf
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue