Add dev jar task to build.gradle

This commit is contained in:
Electroblob77
2019-01-05 18:45:18 +00:00
parent f9f6b34549
commit 95ce659ec3
+8
View File
@@ -57,6 +57,14 @@ dependencies {
}
task deobfJar(type: Jar, dependsOn: 'jar') {
from "build/source/main"
classifier "dev"
}
artifacts {
archives deobfJar
}
processResources {
// this will ensure that this task is redone when the versions change.
inputs.property "version", project.version