Lines Matching refs:jar
48 // build a jar containing all dependencies
49 jar {
57 task proguard(type: JavaExec, dependsOn: jar) {
58 def outFile = jar.destinationDir.getPath() + '/' + jar.baseName + '-' + jar.version + '-small' + '.' + jar.extension
59 inputs.file jar.archivePath
64 args '-injars ' + jar.archivePath
66 args '-libraryjars ' + System.properties['java.home'] + '/lib/rt.jar'