-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (30 loc) · 979 Bytes
/
Copy pathbuild.gradle
File metadata and controls
36 lines (30 loc) · 979 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
36
group 'Home'
version '1.0-SNAPSHOT'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'io.spring.gradle:dependency-management-plugin:0.6.0.RELEASE'
}
}
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile 'org.springframework:spring-context'
testCompile 'org.springframework:spring-orm'
testCompile 'org.springframework:spring-jdbc'
testCompile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.2.Final'
testCompile group: 'com.h2database', name: 'h2', version: '1.4.192'
testCompile group: 'commons-logging', name: 'commons-logging', version: '1.2'
}
dependencyManagement {
imports {
mavenBom 'io.spring.platform:platform-bom:2.0.7.RELEASE'
}
}