1 // tools module 2 3 apply plugin: 'java' 4 5 def mainClassName = 'com.google.archivepatcher.tools.FileByFileTool' 6 jar { 7 manifest { 8 attributes "Main-Class": mainClassName 9 } 10 11 from { 12 configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } 13 } 14 } 15 16 dependencies { 17 compile project(':applier') 18 compile project(':explainer') 19 compile project(':generator') 20 compile project(':shared') 21 } 22 // EOF 23