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