-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
66 lines (54 loc) · 1.69 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
plugins {
id 'java'
id 'application'
id 'idea'
id 'eclipse'
id 'checkstyle'
id 'edu.sc.seis.launch4j' version '1.6.1'
}
checkstyle {
toolVersion = "7.5.1"
}
repositories {
mavenCentral()
mavenLocal()
maven {
name "sonatype snapshots"
url "https://oss.sonatype.org/content/repositories/snapshots"
}
maven {
name "sonatype release"
url "https://oss.sonatype.org/content/repositories/releases"
}
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
sourceSets.main.java.srcDirs = ["src/main/java"]
mainClassName = "de.hhu.stups.bsynthesis.BSynthesis"
dependencies {
compile 'org.controlsfx:controlsfx:9.0.0'
compile 'com.googlecode.java-diff-utils:diffutils:1.3.0'
compile 'de.codecentric.centerdevice:centerdevice-nsmenufx:2.1.5'
compile 'de.hhu.stups:de.prob2.kernel:3.2.10-SNAPSHOT'
compile 'de.jensd:fontawesomefx:8.9'
compile 'com.google.inject.extensions:guice-assistedinject:4.1.0'
compile group: 'org.reactfx', name: 'reactfx', version: '1.4.1'
compile group: 'org.codehaus.janino', name: 'janino', version: '3.0.8'
compile group: 'org.fxmisc.easybind', name: 'easybind', version: '1.0.3'
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.8.1'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
jar {
manifest {
attributes "Main-Class": "de.hhu.stups.bsynthesis.BSynthesis"
}
from(configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }) {
exclude 'META-INF/MANIFEST.MF'
exclude 'META-INF/*.SF'
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.RSA'
}
}