-
Notifications
You must be signed in to change notification settings - Fork 25
/
build.gradle
38 lines (31 loc) · 987 Bytes
/
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
36
37
38
apply plugin: "java"
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:1.0.3.RELEASE"
}
}
subprojects {
apply plugin: "java"
apply plugin: "io.spring.dependency-management"
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencyManagement {
dependencies {
// SPRING
dependency "org.springframework.boot:spring-boot-starter:2.0.2.RELEASE"
dependency "org.springframework.boot:spring-boot-starter-web-services:2.0.2.RELEASE"
dependency "org.springframework.boot:spring-boot-starter-test:2.0.2.RELEASE"
// TEST
dependency "org.assertj:assertj-core:3.10.0"
// TEST RESTASSURED
dependency "io.rest-assured:rest-assured:3.1.0"
dependency "org.codehaus.groovy:groovy-all:2.4.10"
}
}
}