-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (23 loc) · 821 Bytes
/
Copy pathbuild.gradle
File metadata and controls
30 lines (23 loc) · 821 Bytes
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
group 'com.avol.springjdbc'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
//Spring dependencies.
compile 'org.springframework:spring-context:3.2.10.RELEASE'
compile 'org.springframework:spring-jdbc:3.2.10.RELEASE'
compile 'org.springframework:spring-aop:3.2.10.RELEASE'
compile 'org.springframework:spring-expression:3.2.10.RELEASE'
compile 'org.springframework:spring-context-support:3.2.10.RELEASE'
//lombok dependencies.
compile 'org.projectlombok:lombok:1.16.4'
// H2 InMemory DB
compile 'com.h2database:h2:1.4.187'
//test dependencies.
testCompile 'org.springframework:spring-test:3.2.10.RELEASE'
testCompile group: 'junit', name: 'junit', version: '4.11'
}