-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
31 lines (26 loc) · 812 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
31 lines (26 loc) · 812 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
/*
* Copyright (c) 2020-2025. Ivan Vakhrushev and others.
* https://github.com/mfvanek/spring-boot-open-telemetry-demo
*
* Licensed under the Apache License 2.0
*/
plugins {
id("java-platform")
}
description = "BOM for internal usage"
javaPlatform {
allowDependencies()
}
dependencies {
api(platform("org.assertj:assertj-bom:3.27.6"))
api(platform("org.testcontainers:testcontainers-bom:2.0.3"))
api(platform("org.junit:junit-bom:6.0.1"))
api(platform("io.github.mfvanek:pg-index-health-bom:0.30.2"))
constraints {
api("org.liquibase:liquibase-core:5.0.1")
api("com.github.blagerweij:liquibase-sessionlock:1.6.9")
api("org.awaitility:awaitility:4.3.0")
api("com.zaxxer:HikariCP:7.0.2")
api("org.postgresql:postgresql:42.7.8")
}
}