forked from scassandra/scassandra-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (39 loc) · 1.01 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
plugins {
id 'net.researchgate.release' version '2.1.2'
id 'com.github.hierynomus.license' version '0.11.0'
}
apply plugin: 'java'
apply plugin: 'scala'
task wrapper(type: Wrapper) {
gradleVersion = '2.5'
}
subprojects {
apply plugin: 'license'
license {
header rootProject.file('LICENSE')
strictCheck true
mapping {
java = 'SLASHSTAR_STYLE'
scala = 'SLASHSTAR_STYLE'
}
// Excluded generated antlr code
exclude '**/CqlTypes*.java'
}
ext {
antlrVersion = '4.5'
akkaVersion = '2.3.9'
commonsCodecVersion = '1.10'
httpClientVersion = '4.3.3'
javaDriverVersion = '3.1.1'
junitVersion = '4.11'
guavaVersion = '17.0'
gsonVersion = '2.5'
logbackVersion = '1.1.1'
mockitoVersion = '1.9.5'
scalaVersion = '2.11.8'
scodecVersion = '1.10.2'
slf4jVersion = '1.7.10'
sprayVersion = '1.3.3'
sprayJsonVersion = '1.3.2'
}
}