diff options
author | Olivier Lamy <olamy@apache.org> | 2022-04-17 21:31:02 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-17 21:31:02 +1000 |
commit | e6a08c75177ac7fa05b21ddccc90e0036d69e55d (patch) | |
tree | be4528770d873f8997bf095b9b7e6239e68b3608 /pom.xml | |
parent | c792f68b51a9fa335ee79d2c04a481747461a20d (diff) | |
download | archiva-e6a08c75177ac7fa05b21ddccc90e0036d69e55d.tar.gz archiva-e6a08c75177ac7fa05b21ddccc90e0036d69e55d.zip |
use testcontainers to run cassandra tests (#79)
* use testcontainers for cassandra test
Signed-off-by: Olivier Lamy <olamy@apache.org>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 36 |
1 files changed, 22 insertions, 14 deletions
@@ -1825,27 +1825,35 @@ <!-- JUNIT 5 --> <dependency> - <groupId>org.junit.platform</groupId> - <artifactId>junit-platform-launcher</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.junit.platform</groupId> - <artifactId>junit-platform-console-standalone</artifactId> - <scope>test</scope> - </dependency> - <dependency> <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-engine</artifactId> + <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> - <dependency> + <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> - - +<!-- <dependency>--> +<!-- <groupId>org.junit.platform</groupId>--> +<!-- <artifactId>junit-platform-launcher</artifactId>--> +<!-- <scope>test</scope>--> +<!-- </dependency>--> +<!-- <dependency>--> +<!-- <groupId>org.junit.platform</groupId>--> +<!-- <artifactId>junit-platform-console-standalone</artifactId>--> +<!-- <scope>test</scope>--> +<!-- </dependency>--> +<!-- <dependency>--> +<!-- <groupId>org.junit.jupiter</groupId>--> +<!-- <artifactId>junit-jupiter-engine</artifactId>--> +<!-- <scope>test</scope>--> +<!-- </dependency>--> +<!-- <dependency>--> +<!-- <groupId>org.junit.vintage</groupId>--> +<!-- <artifactId>junit-vintage-engine</artifactId>--> +<!-- <scope>test</scope>--> +<!-- </dependency>--> </dependencies> |