Skip to content

Commit

Permalink
fix performance build for Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
JerryShea committed Apr 24, 2023
1 parent eb80507 commit 3c8178a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion marshallingperf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>

<configuration>
<systemProperties>
Expand Down
10 changes: 6 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -504,17 +504,19 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>

<configuration>
<classpathScope>test</classpathScope>
</configuration>
<executions>
<execution>
<id>long-converter-test</id>
<phase>test</phase>
<goals>
<goal>java</goal>
<goal>exec</goal>
</goals>
<configuration>
<skip>false</skip>
<mainClass>net.openhft.chronicle.wire.AbstractTimestampLongConverterJLBHBenchmark</mainClass>
<classpathScope>test</classpathScope>
<executable>${java.home}/bin/java</executable>
<commandlineArgs>${jvm.requiredArgs} -classpath %classpath net.openhft.chronicle.wire.AbstractTimestampLongConverterJLBHBenchmark</commandlineArgs>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 3c8178a

Please sign in to comment.