-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (33 loc) · 1.16 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
36
37
38
group 'de.nordakademie.iaa'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
sourceCompatibility = 1.8
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.8.RELEASE")
}
}
repositories {
mavenCentral()
}
dependencies {
// JUnit
testCompile group: 'junit', name: 'junit', version: '4.12'
// H2
compile 'com.h2database:h2:1.4.196'
// Jackson Datatype
compile 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.8.10'
// Spring
compile 'org.springframework.boot:spring-boot-configuration-processor:1.5.8.RELEASE'
compile 'org.springframework.boot:spring-boot-devtools:1.5.8.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-data-jpa:1.5.8.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-jdbc:1.5.8.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-security:1.5.8.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-test:1.5.8.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-web:1.5.8.RELEASE'
}