forked from dropbox/rethink-java-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (38 loc) · 951 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
49
buildscript {
repositories {
jcenter()
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
import org.apache.tools.ant.filters.ReplaceTokens
version = '0.4'
repositories {
mavenCentral()
maven {
url 'http://maven.restlet.org'
}
}
sourceCompatibility = 1.6
targetCompatibility = 1.6
configurations {
// Prevents slf4j impl jar conflicts
all*.exclude group: 'org.slf4j', module: 'slf4j-log4j12'
}
dependencies {
compile 'com.google.protobuf:protobuf-java:2.5.0'
compile 'org.slf4j:slf4j-api:1.6.6'
compile 'com.google.guava:guava:17.0'
compile 'ch.qos.logback:logback-classic:1.0.10'
testCompile 'junit:junit:4.11'
testCompile 'org.easytesting:fest-assert:1.4'
}
jar {
manifest {
attributes(
'Implementation-Title': 'rethink-java-driver',
'Implementation-Version': 0.4,
'Main-Class': 'com.rethinkdb.RethinkDB'
)
}
}