mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-24 21:21:56 +00:00
13 lines
508 B
Groovy
13 lines
508 B
Groovy
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '2.6'
|
|
def zipLoc = getBinLoc("Ghidra/contrib/gradle/gradle-${gradleVersion}-all.zip").toPath()
|
|
def jarLoc = getBinLoc('Ghidra/contrib/gradle/wrapper').toPath()
|
|
distributionUrl = jarLoc.relativize(zipLoc).toFile()
|
|
distributionBase = Wrapper.PathBase.PROJECT
|
|
distributionPath = ".gradle/wrapper/dists"
|
|
archiveBase = Wrapper.PathBase.PROJECT
|
|
archivePath = ".gradle/wrapper/dists"
|
|
jarFile = jarLoc.resolve("gradle-wrapper-${gradleVersion}.jar").toFile()
|
|
}
|