-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbuild.gradle.kts
44 lines (36 loc) · 1.28 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
plugins {
id("org.jetbrains.kotlin.jvm") version "1.1.51"
id("org.jetbrains.kotlin.plugin.spring") version "1.1.51"
id("org.jetbrains.kotlin.plugin.jpa") version "1.1.51"
id("org.springframework.boot") version "1.5.8.RELEASE"
id("io.spring.dependency-management") version "1.0.3.RELEASE"
}
group = "com.kapilkoju"
version = "17.11.10"
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
springBoot {
isExecutable = true
}
ext {
set("hibernate.version", "5.2.12.Final")
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("org.springframework.boot:spring-boot-starter-batch")
compile("org.springframework.boot:spring-boot-devtools")
compile("org.jetbrains.kotlin:kotlin-stdlib-jre8")
compile("org.jetbrains.kotlin:kotlin-reflect")
compile("org.jsoup:jsoup:1.10.3")
runtime("org.postgresql:postgresql")
runtime("org.liquibase:liquibase-core")
testCompile("org.springframework.boot:spring-boot-starter-test")
testRuntime("com.h2database:h2")
}
repositories {
mavenCentral()
maven(url = "https://repo.spring.io/snapshot")
maven(url = "https://repo.spring.io/milestone")
}