-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (26 loc) · 1.08 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
apply plugin: 'java'
group = 'org.home.spring.jpa'
version = '1.0.0'
targetCompatibility = 1.8
sourceCompatibility = 1.8
repositories {
jcenter()
mavenLocal()
mavenCentral()
}
dependencies {
compile "org.springframework:spring-core:${springframeworkVersion}"
compile "org.springframework:spring-context:${springframeworkVersion}"
compile "org.springframework:spring-orm:${springframeworkVersion}"
compile "org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final"
compile 'org.springframework.data:spring-data-jpa:1.9.2.RELEASE'
compile "org.hibernate:hibernate-core:${hibernateVersion}"
compile "org.hibernate:hibernate-entitymanager:${hibernateVersion}"
compile "org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final"
compile "org.hsqldb:hsqldb:2.3.3"
compile 'javax.inject:javax.inject:1'
compile 'edu.washington.cs.types.checker:checker-framework:1.7.0'
testCompile "org.springframework:spring-test:${springframeworkVersion}"
testCompile 'junit:junit:4.12'
testCompile 'org.assertj:assertj-core:3.2.0'
}