-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
36 lines (29 loc) · 1006 Bytes
/
build.gradle.kts
File metadata and controls
36 lines (29 loc) · 1006 Bytes
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
plugins {
application
}
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.apache.logging.log4j:log4j-api:2.25.1")
implementation("org.apache.logging.log4j:log4j-core:2.25.1")
implementation("org.apache.logging.log4j:log4j-slf4j-impl:2.25.1")
runtimeOnly("org.postgresql:postgresql:42.7.7")
implementation("org.flywaydb:flyway-core:11.13.0")
runtimeOnly("org.flywaydb:flyway-database-postgresql:11.13.0")
implementation("com.zaxxer:HikariCP:7.0.2")
testImplementation("org.junit.jupiter:junit-jupiter:5.13.4")
testImplementation("org.testcontainers:testcontainers:1.21.3")
testImplementation("org.testcontainers:junit-jupiter:1.21.3")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.13.4")
}
application {
mainClass.set("ai.toloka.engineering.pg_queue_buffer.Main")
}
tasks.test {
useJUnitPlatform()
}