-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
41 lines (28 loc) · 836 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
plugins {
id 'java'
}
jar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
manifest {
attributes 'Main-Class': 'com.research.veracode.treeviewer.NamespaceTreeViewer'
}
from {
configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
group 'com.research.veracode.treeviewer'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.23
repositories {
mavenCentral()
}
dependencies {
compileOnly 'com.beust:jcommander:1.72'
compileOnly 'org.apache.bcel:bcel:6.4.0'
compileOnly 'commons-io:commons-io:1.4'
implementation 'org.yaml:snakeyaml:1.25'
compileOnly 'com.google.code.gson:gson:2.8.6'
compileOnly 'com.thoughtworks.xstream:xstream:1.4.11.1'
compileOnly project(':OutputGenerator')
compileOnly project(':ClassFileExtractor')
}