-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (22 loc) · 882 Bytes
/
build.gradle
File metadata and controls
35 lines (22 loc) · 882 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
31
32
33
34
35
apply plugin: 'java'
sourceCompatibility = 1.7
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile 'org.mockito:mockito-core:1.9.5'
testCompile 'org.springframework:spring-test:4.0.2.RELEASE'
compile 'org.springframework:spring-context:4.0.2.RELEASE'
compile 'org.springframework.data:spring-data-jpa:1.5.1.RELEASE'
compile 'org.hibernate:hibernate-core:4.3.4.Final'
compile 'org.hibernate:hibernate-entitymanager:4.3.4.Final'
compile 'javax.el:javax.el-api:3.0.0'
compile 'com.sun.el:el-ri:1.0'
compile 'javax.validation:validation-api:1.1.0.Final'
compile 'org.hibernate:hibernate-validator:5.1.0.Final'
compile 'mysql:mysql-connector-java:5.1.29'
compile 'com.jolbox:bonecp:0.8.0.RELEASE'
compile 'org.hsqldb:hsqldb:2.3.2'
}