Re-enable jar task. Don't want it? Ignore it.

This commit is contained in:
Matthew Messinger 2018-08-21 21:17:07 -04:00
parent fb381a0792
commit fb4fee1076

View file

@ -104,7 +104,6 @@ jar {
classifier 'base'
extension 'jar'
}
jar.enabled = false
archivesBaseName = "mod-${project.name.toLowerCase()}"
@ -151,11 +150,3 @@ reobf {
shadowJar{}
}
reobf.jar.task.enabled = false
// windows only
task deploy(type: Copy, dependsOn: build) {
from jar.archivePath
into file("$System.env.APPDATA/.minecraft/mods")
}