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