-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (39 loc) · 1.07 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
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 1.7
targetCompatibility = 1.7
version = '1.0'
jar {
from {
configurations.runtime.collect {
it.isDirectory() ? it : zipTree(it)
}
configurations.compile.collect {
it.isDirectory() ? it : zipTree(it)
}
}
manifest {
attributes 'Main-Class': 'org.sharedhealth.hie.data.Main',
'Class-Path': '.'
}
exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'
}
task wrapper(type: Wrapper) {
gradleVersion = '2.12'
}
repositories {
mavenCentral()
flatDir {
dirs "${rootDir}/lib"
}
}
dependencies {
compile 'org.apache.commons:commons-csv:1.1'
compile 'commons-io:commons-io:2.4'
compile 'org.apache.commons:commons-lang3:3.0'
compile 'com.toddfast.mutagen:mutagen:0.3.0'
compile 'com.toddfast.mutagen:mutagen-cassandra-0.4.2-SNAPSHOT'
compile 'com.datastax.cassandra:cassandra-driver-dse:2.0.4'
testCompile 'junit:junit:4.11'
testCompile "mysql:mysql-connector-java:5.1.33"
}