This commit is contained in:
Jesse Boyd
2018-09-12 12:26:57 +10:00
parent 277ff8f787
commit c1f9120cee
2 changed files with 9 additions and 6 deletions

View File

@@ -17,8 +17,12 @@ processResources {
}
}
jar.destinationDir = file '../target'
jar.archiveName = "FastAsyncVoxelSniper-${project.name}-${parent.version}.jar"
jar.doLast { task ->
ant.checksum file: task.archivePath
}
shadowJar {
dependencies {
include(dependency('com.martiansoftware:jsap:2.1'))
}
archiveName = "FastAsyncVoxelSniper-${project.name}-${parent.version}.jar"
destinationDir = file '../target'
}
build.dependsOn(shadowJar)