-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (50 loc) · 1.66 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
plugins {
id "org.sonarqube" version "2.7"
id "application"
}
group 'io.safe.talk'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = 1.8
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'commons-cli', name: 'commons-cli', version: '1.4'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'org.jdom', name: 'jdom', version: '2.0.2'
compileOnly "org.projectlombok:lombok:1.16.16"
testCompile group: 'org.slf4j', name: 'slf4j-simple', version: '1.6.1'
compile group: 'javax.mail', name: 'mail', version: '1.4.7'
compile group: 'javax.activation', name: 'activation', version: '1.1'
compile group: 'commons-codec', name: 'commons-codec', version: '1.10'
compile group: 'org.json', name: 'json', version: '20090211'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.7'
}
repositories {
mavenCentral()
}
}
project(':SafeTalkCore') {
dependencies {
compile project(':STEncryption')
compile group: 'commons-cli', name: 'commons-cli', version: '1.2'
}
}
project(':ST-GUI') {
dependencies {
compile project(':SafeTalkCore')
compile group: 'com.apple', name: 'AppleJavaExtensions', version: '1.4'
}
jar {
manifest {
attributes "Main-Class": "io.safe.talk.gui.STApplicationGUI"
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
}