Skip to content

Commit

Permalink
backport jdk10 RenderingEngine (DMarlinRenderingEngine is default) + …
Browse files Browse the repository at this point in the history
…fixed integration tests
  • Loading branch information
bourgesl committed Dec 12, 2017
1 parent 3b16c4c commit e1a805c
Show file tree
Hide file tree
Showing 2 changed files with 494 additions and 19 deletions.
38 changes: 19 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,25 +123,25 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20.1</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.20.1</version>
<!-- Run tests when the integration-test phase is invoked (after the marlin jar is built) -->
<!--
CrashTest may need large heap: -Xms4g -Xmx4g
CrashTest may need large heap: -Xms4g -Xmx4g
-->
<executions>
<execution>
<id>default-test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<skip>true</skip>
</configuration>
</execution>
<execution>
<id>integration-test-float</id>
<phase>test</phase>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
<goal>integration-test</goal>
</goals>
<configuration>
<skip>${integration.skip}</skip>
Expand All @@ -158,9 +158,9 @@
</execution>
<execution>
<id>integration-test-double</id>
<phase>test</phase>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
<goal>integration-test</goal>
</goals>
<configuration>
<skip>${integration.skip}</skip>
Expand All @@ -177,9 +177,9 @@
</execution>
<execution>
<id>integration-long-test-float</id>
<phase>test</phase>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
<goal>integration-test</goal>
</goals>
<configuration>
<skip>${integration.skip.long}</skip>
Expand All @@ -196,9 +196,9 @@
</execution>
<execution>
<id>integration-long-test-double</id>
<phase>test</phase>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
<goal>integration-test</goal>
</goals>
<configuration>
<skip>${integration.skip.long}</skip>
Expand Down
Loading

0 comments on commit e1a805c

Please sign in to comment.