Changed verify task group output directory

master
nathan 2018-08-12 20:36:54 +02:00
parent 4856f035d8
commit 81e60d1edd
2 changed files with 4 additions and 3 deletions

View File

@ -57,7 +57,7 @@ apply plugin: "com.dorkbox.Licensing"
project.description = 'Plugin to auto-configure cross-compilation builds for java projects'
project.group = 'com.dorkbox'
project.version = '1.0'
project.version = '1.0.1'
project.ext.name = 'Gradle CrossCompile Plugin'
project.ext.id = 'CrossCompile'

View File

@ -388,7 +388,8 @@ class PrepareJdk : Plugin<Project> {
val fileName = file.name
if (!sha1Checksum.isEmpty()) {
val verify = project.tasks.create("verify$fileName", Verify::class.java)
val verify = project.tasks.create("verify${fileName.capitalize().substringBefore(".")}", Verify::class.java)
verify.group = "crossCompile"
verify.src(file)
verify.algorithm("SHA1")
verify.checksum(sha1Checksum)
@ -401,7 +402,7 @@ class PrepareJdk : Plugin<Project> {
}
}
else {
// lame way to verify, but tnable to find or extract jar fihere is no checksum...
// lame way to verify, but unable to find or extract jar if there is no checksum...
valid = file.canRead() && file.length() > 0
}