-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (27 loc) · 707 Bytes
/
Copy pathbuild.gradle
File metadata and controls
35 lines (27 loc) · 707 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
group 'djulia'
version '1.0-SNAPSHOT'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath('io.spring.gradle:dependency-management-plugin:0.5.4.RELEASE')
}
}
allprojects {
repositories {
mavenCentral()
}
apply plugin: 'io.spring.dependency-management'
dependencyManagement {
imports {
mavenBom 'io.spring.platform:platform-bom:2.0.3.RELEASE'
}
}
apply plugin: 'java'
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile 'org.assertj:assertj-core:3.4.1'
// compile 'org.springframework:spring-core' let's see if we need this..
}
}