-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle.kts
44 lines (34 loc) · 1.22 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 {
java
groovy
id("org.springframework.boot") version "2.1.5.RELEASE"
}
apply(plugin = "io.spring.dependency-management")
group = "pl.dk"
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")
implementation("org.springframework.data:spring-data-jdbc")
implementation("com.zaxxer:HikariCP")
implementation("org.codehaus.groovy:groovy-all:2.5.7")
implementation("org.projectlombok:lombok")
implementation("org.postgresql:postgresql")
implementation("io.debezium:debezium-embedded:0.9.5.Final")
implementation("io.debezium:debezium-connector-postgres:0.9.5.Final")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.spockframework:spock-spring:1.3-groovy-2.5")
testImplementation("org.testcontainers:spock:1.11.3")
testImplementation("org.testcontainers:postgresql:1.11.3")
testImplementation("org.awaitility:awaitility-groovy:3.1.6")
}
tasks.withType(Wrapper::class.java).configureEach {
gradleVersion = "6.1.1"
}