forked from LynnKdG/sa2_opdracht1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (27 loc) · 797 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
group 'be.kdg'
version '0.1'
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
buildscript {
ext {
springBootVersion = '1.5.9.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath(group: 'org.springframework.boot', name: 'spring-boot-gradle-plugin', version: springBootVersion)
}
}
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile(group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: springBootVersion)
compile(group: 'com.google.code.gson', name: 'gson', version: '2.8.1')
testCompile(group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: springBootVersion)
}
task wrapper(type: Wrapper) {
gradleVersion = '4.4.1'
}