forked from uschi2000/atlasdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversions.gradle
45 lines (42 loc) · 1.1 KB
/
versions.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
ext.libVersions =
[
guava: '18.0',
slf4j: '1.7.5',
jsr305: '1.3.9',
junit: '4.12',
jmock: '2.8.2',
mockito: '1.10.17',
dropwizard: '0.8.2',
dockerComposeRule: '0.16.0',
commons_lang: '2.6',
commons_lang3: '3.1',
commons_io: '2.1',
commons_dbutils: '1.3',
joda_time: '2.7',
snappy: '1.1.1.7',
jackson: '2.5.1',
jackson_annotation: '2.5.0',
cassandra: '2.2.1',
cassandra_driver_core: '2.2.0-rc3',
groovy: '2.4.4',
hamcrest: '1.3',
commons_codec: '1.10',
libthrift: '0.9.2',
protobuf: '2.6.0',
findbugs: '1.3.9',
hikariCP: '2.4.5',
// Danger, Will Robinson!
//
// This driver has historically low code quality and should be considered a high-risk update.
// Severe performance regressions in 1202,3,4.
// Severe correctness issues in 1204,5,6.
// Update with care and caution.
postgresql: '9.4.1207.jre7',
c3p0: '0.9.5.1',
log4j: '1.2.17'
]
configurations.matching({ it.name in ['compile', 'runtime'] }).all {
resolutionStrategy {
failOnVersionConflict()
}
}