Skip to content

Commit 361b914

Browse files
authored
Merge pull request #1497 from ie3-institute/df/#1496-testcontainers-v2
Change `testcontainers` to v2
2 parents d16871b + ba23fce commit 361b914

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2929
- Change spotless to use googleJavaFormat('1.28.0') [#1409](https://github.com/ie3-institute/PowerSystemDataModel/issues/1409)
3030
- Change `TimeSeries` to no longer extend `UniqueEntity` [#1441](https://github.com/ie3-institute/PowerSystemDataModel/issues/1441)
3131
- Refactor CSV handling into shared file-based infrastructure. [#1450](https://github.com/ie3-institute/PowerSystemDataModel/issues/1445)
32+
- Change `testcontainers` to v2 [#1496](https://github.com/ie3-institute/PowerSystemDataModel/issues/1496)
3233

3334
## [8.1.0] - 2025-07-25
3435

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ext {
2121
groovyBinaryVersion = "4.0.28"
2222

2323
junitVersion = '6.0.1'
24-
testcontainersVersion = '1.21.3'
24+
testcontainersVersion = '2.0.2'
2525

2626
scriptsLocation = 'gradle' + File.separator + 'scripts' + File.separator //location of script plugins
2727
}
@@ -86,10 +86,10 @@ dependencies {
8686

8787
// testcontainers (docker framework for testing)
8888
testImplementation "org.testcontainers:testcontainers:$testcontainersVersion"
89-
testImplementation "org.testcontainers:spock:$testcontainersVersion"
90-
testImplementation "org.testcontainers:influxdb:$testcontainersVersion"
91-
testImplementation "org.testcontainers:postgresql:$testcontainersVersion"
92-
testImplementation "org.testcontainers:couchbase:$testcontainersVersion"
89+
testImplementation "org.testcontainers:testcontainers-spock:$testcontainersVersion"
90+
testImplementation "org.testcontainers:testcontainers-influxdb:$testcontainersVersion"
91+
testImplementation "org.testcontainers:testcontainers-postgresql:$testcontainersVersion"
92+
testImplementation "org.testcontainers:testcontainers-couchbase:$testcontainersVersion"
9393

9494
// logging
9595
implementation platform('org.apache.logging.log4j:log4j-bom:2.25.2')

0 commit comments

Comments
 (0)