forked from Qabel/qabel-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (39 loc) · 1.17 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
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = 1.7
version = '0.1'
group = 'de.qabel.core'
jar {
manifest {
attributes 'Implementation-Title': 'Qabel Core', 'Implementation-Version': version
}
}
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.+'
testCompile group: 'org.meanbean', name: 'meanbean', version: '2.+'
compile 'com.google.code.gson:gson:2.+'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.+'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.+'
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.51'
compile group: 'org.apache.james', name: 'apache-mime4j', version: '0.7.2'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.+'
compile group: 'org.xerial', name: 'sqlite-jdbc', version: '3.8.7'
compile project(':ackack')
}
task wrapper(type: Wrapper) {
gradleVersion = '2.2.1'
}
tasks.withType(Test) {
systemProperty "java.library.path", "."
}
sourceSets {
main {
resources.srcDirs += ['src/resources/config/']
}
test {
resources.srcDirs += ['src/resources/config/']
}
}