forked from Netflix/astyanax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (41 loc) · 1.53 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
// Establish version and status
ext.releaseVersion = '1.0.4'
ext.githubProjectName = name
group = 'com.netflix.astyanax'
buildscript {
repositories { mavenCentral() }
}
allprojects {
repositories { mavenCentral() }
}
//apply from: file('gradle/release.gradle') // Not fully tested
apply from: file('gradle/convention.gradle')
apply from: file('gradle/maven.gradle')
apply from: file('gradle/check.gradle')
//apply from: file('gradle/license.gradle') // Waiting for re-release
// Closure to configure all the POM with extra info, common to all projects
pom {
project {
url "https://github.com/Netflix/${githubProjectName}"
scm {
connection "scm:git:git@github.com:Netflix/${githubProjectName}.git"
url "scm:git:git@github.com:Netflix/${githubProjectName}.git"
developerConnection "scm:git:git@github.com:Netflix/${githubProjectName}.git"
}
issueManagement {
system 'github'
url "https://github.com/Netflix/${githubProjectName}/issues"
}
}
}
dependencies {
compile 'joda-time:joda-time:2.0'
compile 'org.apache.servicemix.bundles:org.apache.servicemix.bundles.commons-csv:1.0-r706900_3'
compile 'com.github.stephenc.high-scale-lib:high-scale-lib:1.1.2'
compile 'com.google.guava:guava:11.0.2'
compile 'org.apache.cassandra:cassandra-all:1.1.0'
compile 'com.github.stephenc.eaio-uuid:uuid:3.2.0'
compile 'org.slf4j:slf4j-api:1.6.4'
compile 'org.codehaus.jettison:jettison:1.3.1'
testCompile 'junit:junit:4.8.1'
}