-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (32 loc) · 902 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:0.6.1.RELEASE"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.5-2"
}
}
apply plugin: "kotlin"
apply plugin: "eclipse"
apply plugin: "io.spring.dependency-management"
jar {
baseName = "demo-spring-kotlin"
version = "1.0"
}
repositories {
jcenter()
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.springframework.boot:spring-boot-starter-data-jpa"
compile "org.jetbrains.kotlin:kotlin-stdlib:1.0.5-2"
runtime "org.springframework.boot:spring-boot-devtools"
runtime "org.hsqldb:hsqldb"
testCompile "org.springframework.boot:spring-boot-starter-test"
}
dependencyManagement {
imports {
mavenBom "io.spring.platform:platform-bom:Athens-SR1"
}
}