Skip to content

Commit

Permalink
Testcontainers pushed to the tck profile
Browse files Browse the repository at this point in the history
- not everyone has docker support

Signed-off-by: David Matějček <[email protected]>
  • Loading branch information
dmatej committed Oct 4, 2023
1 parent db0047b commit 0175b32
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions appserver/tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@

<properties>
<test.logManager>org.glassfish.main.jul.GlassFishLogManager</test.logManager>
<testcontainers.version>1.17.6</testcontainers.version>
</properties>

<build>
Expand Down Expand Up @@ -127,7 +126,6 @@
<module>application</module>
<module>appserv-tests</module>
<module>embedded</module>
<module>testcontainers</module>
</modules>
</profile>
<profile>
Expand All @@ -151,30 +149,32 @@
<module>testcontainers</module>
<module>tck</module>
</modules>
<properties>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>
<!-- Watch TestContainers dependencies for 2.x -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.7.36</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</profile>
</profiles>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>
<!-- Watch TestContainers dependencies for 2.x -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.7.36</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>

0 comments on commit 0175b32

Please sign in to comment.