mirror of
https://github.com/HMCore/Core.git
synced 2025-12-12 13:56:19 +00:00
added ability to unzip
This commit is contained in:
@@ -50,3 +50,11 @@ javadoc {
|
|||||||
options.addBooleanOption('html5', true)
|
options.addBooleanOption('html5', true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task unzip(type: Copy) {
|
||||||
|
def zipFile = file('build/libs/HMCore-1.1-SNAPSHOT-javadoc.jar')
|
||||||
|
def outputDir = file("${buildDir}/unpacked/javadoc")
|
||||||
|
|
||||||
|
from zipTree(zipFile)
|
||||||
|
into outputDir
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user