-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (37 loc) · 907 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
42
43
44
45
46
47
48
apply plugin: "java"
apply plugin: "idea"
apply plugin: "eclipse"
apply plugin: "application"
mainClassName = "de.uniba.dsg.bpmnspector.fix.seqflow.Main"
task wrapper(type: Wrapper) {
gradleVersion = '2.2'
}
repositories {
mavenCentral()
}
configurations {
internal
external
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
dependencies {
internal 'org.jdom:jdom2:2.0.+'
internal 'jaxen:jaxen:1.1.+'
internal 'ch.qos.logback:logback-core:1.1.+'
internal 'ch.qos.logback:logback-classic:1.1.+'
internal 'org.slf4j:slf4j-api:1.7.+'
internal 'commons-io:commons-io:2.4'
testCompile 'junit:junit:4.+'
compile configurations.internal
}
jar.archiveName = "BPMNspector-fixSeqFlow.jar"
jar {
manifest { attributes 'Main-Class': mainClassName }
}
run {
if(project.hasProperty('args')){
args project.args.split('\\s+')
}
}