fix: forgot to actually call copyJar
This commit is contained in:
parent
06e8d98707
commit
7ebbb991d2
1 changed files with 6 additions and 1 deletions
|
@ -148,7 +148,7 @@ tasks.register('copyJar', Copy) {
|
|||
|
||||
//copy jar from build/libs to the forge mod folder
|
||||
//from shadowJar //we want the über version, not the small one
|
||||
from reobfJar
|
||||
from project.jar
|
||||
into modDir
|
||||
}
|
||||
|
||||
|
@ -164,3 +164,8 @@ publishing {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
build {
|
||||
//dependsOn shadowJar, reobfShadowJar
|
||||
finalizedBy copyJar
|
||||
}
|
Loading…
Reference in a new issue