-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (32 loc) · 1.13 KB
/
build.gradle
File metadata and controls
41 lines (32 loc) · 1.13 KB
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
plugins {
id 'java'
id 'org.springframework.boot'
id 'io.spring.dependency-management'
}
bootJar {
enabled = false
}
jar {
enabled = true
}
dependencies {
implementation project(':task-manager-service')
implementation project(':jobstore-flyway')
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation "org.flywaydb:flyway-core"
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation platform("org.testcontainers:testcontainers-bom:1.20.4")
testImplementation "org.testcontainers:junit-jupiter"
testImplementation "org.testcontainers:postgresql"
// PostgreSQL driver (runtime)
testRuntimeOnly "org.postgresql:postgresql"
runtimeOnly "org.flywaydb:flyway-database-postgresql"
testImplementation 'org.awaitility:awaitility:4.2.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
tasks.named('test') {
useJUnitPlatform()
outputs.upToDateWhen { false }
}