-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
83 lines (76 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.11.3'
}
}
subprojects {
ext {
buildSystemPath = "${rootProject.getProjectDir().path}/buildsystem"
guavaVersion = '19.0'
jacksonVersion = '2.7.5'
daggerVersion = '2.6.1'
autoFactoryVersion = '1.0-beta3'
jodaTimeVersion = '2.8.2'
libphonenumberVersion = '7.0.9'
rxJavaVersion = '1.1.10'
rxKotlinVersion = '0.60.0'
rxAndroidVersion = '1.2.1'
rxJavaMathVersion = '1.0.0'
rxJavaStringVersion = '1.1.0'
rxJavaComputationExpressionsVersion = '0.21.0'
rxJavaJoinsVersion = '0.22.0'
rxJavaAsyncVersion = '0.21.0'
commonsIoVersion = '2.4'
commonsLangVersion = '3.4'
//datanucleusJdoRdbmsVersion = '4.2.2'
datanucleusCoreVersion = '4.1.13'
datanucleusApiJdoVersion = '4.1.4'
datanucleusRdbmsVersion = '4.1.13'
datanucleusJodatimeVersion = '4.1.2'
jsr303ApiVersion = '1.1.0.Final'
hibernateValidatorVersion = '5.2.4.Final'
javaxElVersion = '2.2.5'
glassfishElVersion = '2.2.6'
jdoApiVersion = '3.2.0-m3'
queryDslVersion = '4.1.3'
h2Version = '1.4.192'
jsr250ApiVersion = '1.0'
//kotlinVersion = '0.1-SNAPSHOT'
kotlinVersion = '1.0.4'
groovyVersion = '2.4.5'
//Testing
//jBehaveVersion = '4.1-SNAPSHOT'
jBehaveVersion = '4.0.5c'//customized JBehave code
jBehaveSiteVersion = '3.3'
junitVersion = '4.12'
robolectricVersion = '3.1.1'
assertjVersion = '1.7.1'
log4jVersion = '2.4.1'
reflectionsVersion = '0.9.10'
}
buildscript {
repositories {
jcenter()
//TODO comment out mavenLocal after removing library customization (e.g. JBehave customizations)
mavenLocal()
maven { url 'http://oss.sonatype.org/content/repositories/snapshots' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
repositories {
jcenter()
mavenLocal()
maven { url 'http://oss.sonatype.org/content/repositories/snapshots' }
}
}
apply plugin: 'java' // ensure clean is also triggered for root build folder
apply plugin: 'com.github.ben-manes.versions'
task wrapper(type: Wrapper) {
gradleVersion = '2.6'
}