Skip to content

Commit

Permalink
Upgrade to vertx5-parent
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Jun 17, 2024
1 parent da2871d commit d76bbd1
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 625 deletions.
62 changes: 33 additions & 29 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

<parent>
<groupId>io.vertx</groupId>
<artifactId>vertx-ext-parent</artifactId>
<version>38</version>
<artifactId>vertx5-parent</artifactId>
<version>3</version>
</parent>

<artifactId>vertx-ignite</artifactId>
Expand Down Expand Up @@ -150,6 +150,21 @@
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-compile</id>
<phase>compile</phase>
<configuration>
<annotationProcessors>
<annotationProcessor>io.vertx.codegen.CodeGenProcessor</annotationProcessor>
<annotationProcessor>io.vertx.docgen.JavaDocGenProcessor</annotationProcessor>
</annotationProcessors>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand All @@ -169,6 +184,11 @@
<argLine>
<!-- Needs to be small enough to run in a EC2 1.7GB small instance -->
-Xms512M -Xmx1200M
<!-- setup for JDK 17+ to replace illegal-access -->
--add-opens=java.base/java.nio=ALL-UNNAMED
--add-opens=java.base/java.util=ALL-UNNAMED
--add-opens=java.base/java.lang.invoke=ALL-UNNAMED
--add-opens=java.base/java.lang=ALL-UNNAMED
</argLine>
<forkCount>1</forkCount>
<reuseForks>true</reuseForks>
Expand Down Expand Up @@ -201,33 +221,17 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>package-docs</id>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>java-9</id>
<activation>
<jdk>[1.9,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
<!-- Needs to be small enough to run in a EC2 1.7GB small instance -->
-Xms512M -Xmx1200M
<!-- setup for JDK 17+ to replace illegal-access -->
--add-opens=java.base/java.nio=ALL-UNNAMED
--add-opens=java.base/java.util=ALL-UNNAMED
--add-opens=java.base/java.lang.invoke=ALL-UNNAMED
--add-opens=java.base/java.lang=ALL-UNNAMED
</argLine>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit d76bbd1

Please sign in to comment.