Skip to content

Commit

Permalink
Fixed dependencies of concurrency TCK
Browse files Browse the repository at this point in the history
- at least testng depends on slf4j
- reduced Xmx, it is not required to be so high.

Signed-off-by: David Matějček <david.matejcek@omnifish.ee>
  • Loading branch information
dmatej committed Mar 5, 2024
1 parent 0ed4ac5 commit 2d569df
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion appserver/tests/tck/concurrency/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
<glassfish.home>${glassfish.root}/glassfish7</glassfish.home>

<jcommander.version>1.82</jcommander.version>
<slf4j.version>1.7.29</slf4j.version>
<sigtest.version>1.7</sigtest.version>
<testng.version>7.7.0</testng.version>
</properties>
Expand Down Expand Up @@ -175,6 +176,14 @@
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${glassfish.root}/glassfish7/glassfish/lib</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
Expand Down Expand Up @@ -228,7 +237,7 @@
<systemPropertyVariables>
<glassfish.home>${glassfish.root}/glassfish7</glassfish.home>
<glassfish.enableDerby>true</glassfish.enableDerby>
<glassfish.maxHeapSize>2048m</glassfish.maxHeapSize>
<glassfish.maxHeapSize>512m</glassfish.maxHeapSize>

<!-- Remove comments for logging to file. Following logging with e.g. tail -f ConcurrentTCK00.log -->
<!--
Expand Down

0 comments on commit 2d569df

Please sign in to comment.