forked from hypoport/robust-mongo-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (26 loc) · 833 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
project.ext {
groupId = 'de.hypoport'
artifactId = 'robust-mongo-config'
version = '1.0'
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven'
sourceCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
def springVersion = '4.0.6.RELEASE'
compile "org.springframework:spring-core:$springVersion"
compile "org.springframework.data:spring-data-mongodb:1.5.1.RELEASE"
compile "org.mongodb:mongo-java-driver:2.12.2"
compile("javax.inject:javax.inject:1") { force = true }
compile 'org.apache.commons:commons-lang3:3.3.2'
compile 'joda-time:joda-time:2.3'
testCompile "org.testng:testng:5.14.2"
testCompile "org.easytesting:fest-assert:1.4"
testCompile "de.hypoport.testutils:testng-testutils:1.5"
testCompile "org.springframework:spring-test:$springVersion"
}