-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
50 lines (42 loc) · 1.44 KB
/
build.gradle.kts
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
39
40
41
42
43
44
45
46
47
48
49
50
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
buildscript {
val kotlinVersion = "1.2.0"
val springBootVersion = "2.0.0.M7"
repositories {
mavenCentral()
maven { url = uri("https://repo.spring.io/milestone") }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("org.jetbrains.kotlin:kotlin-allopen:$kotlinVersion")
}
}
apply {
plugin("kotlin")
plugin("kotlin-spring")
plugin("war")
plugin("org.springframework.boot")
plugin("io.spring.dependency-management")
}
tasks.withType<KotlinCompile> {
kotlinOptions {
kotlinOptions.jvmTarget = "1.8"
}
}
repositories {
mavenCentral()
mavenLocal()
maven { url = uri("https://repo.spring.io/milestone") }
}
val kotlinVersion = "1.2.0"
val uPortalVersion = "5.16.0"
dependencies {
"compile"("org.springframework.boot:spring-boot-starter-web")
"compile"("org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlinVersion")
"compile"("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
"compile"("org.jasig.portal:uPortal-soffit-renderer:$uPortalVersion")
"testCompile"("org.springframework.boot:spring-boot-starter-test")
"providedRuntime"("org.apache.tomcat.embed:tomcat-embed-jasper")
"providedRuntime"("org.springframework.boot:spring-boot-starter-tomcat")
}