-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle.kts
38 lines (30 loc) · 1.03 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
plugins {
java
groovy
id("org.springframework.boot") version "2.1.6.RELEASE"
}
apply(plugin = "io.spring.dependency-management")
group = "pl.dk.learn"
version = "0.0.1-SNAPSHOT"
repositories {
mavenCentral()
}
configure<JavaPluginConvention> {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
dependencies {
annotationProcessor("org.projectlombok:lombok")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-cache")
implementation("net.sf.ehcache:ehcache")
implementation("org.codehaus.groovy:groovy-all:2.5.7")
implementation("org.projectlombok:lombok")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.spockframework:spock-spring:1.3-groovy-2.5")
testImplementation("org.awaitility:awaitility-groovy:3.1.6")
}
tasks.withType(Wrapper::class.java).configureEach {
gradleVersion = "5.5.1"
}