pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>io.quarkus</groupId>
  5. <artifactId>benchmark</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>pom</packaging>
  8. <properties>
  9. <compiler-plugin.version>3.14.0</compiler-plugin.version>
  10. <maven.compiler.release>21</maven.compiler.release>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  13. <quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
  14. <quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
  15. <quarkus.platform.version>3.21.2</quarkus.platform.version>
  16. <skipITs>true</skipITs>
  17. <surefire-plugin.version>3.5.2</surefire-plugin.version>
  18. <!-- Check https://github.com/netty/netty-incubator-transport-io_uring/tags -->
  19. <netty.io_uring.version>0.0.26.Final</netty.io_uring.version>
  20. <rocker.version>1.3.0</rocker.version>
  21. </properties>
  22. <modules>
  23. <module>quarkus-benchmark-common</module>
  24. <module>resteasy-reactive-hibernate</module>
  25. <module>resteasy-reactive-hibernate-reactive</module>
  26. <module>vertx</module>
  27. <module>reactive-routes-pgclient</module>
  28. </modules>
  29. <dependencyManagement>
  30. <dependencies>
  31. <dependency>
  32. <groupId>io.quarkus</groupId>
  33. <artifactId>quarkus-benchmark-common</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.hibernate.orm</groupId>
  38. <artifactId>hibernate-core</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.hibernate.reactive</groupId>
  42. <artifactId>hibernate-reactive-core</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>${quarkus.platform.group-id}</groupId>
  46. <artifactId>${quarkus.platform.artifact-id}</artifactId>
  47. <version>${quarkus.platform.version}</version>
  48. <type>pom</type>
  49. <scope>import</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.fizzed</groupId>
  53. <artifactId>rocker-runtime</artifactId>
  54. <version>${rocker.version}</version>
  55. </dependency>
  56. </dependencies>
  57. </dependencyManagement>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>${quarkus.platform.group-id}</groupId>
  62. <artifactId>quarkus-maven-plugin</artifactId>
  63. <version>${quarkus.platform.version}</version>
  64. <extensions>true</extensions>
  65. <executions>
  66. <execution>
  67. <goals>
  68. <goal>build</goal>
  69. <goal>generate-code</goal>
  70. <goal>generate-code-tests</goal>
  71. </goals>
  72. </execution>
  73. </executions>
  74. </plugin>
  75. <plugin>
  76. <artifactId>maven-compiler-plugin</artifactId>
  77. <version>${compiler-plugin.version}</version>
  78. <configuration>
  79. <compilerArgs>
  80. <arg>-parameters</arg>
  81. </compilerArgs>
  82. </configuration>
  83. </plugin>
  84. <plugin>
  85. <artifactId>maven-surefire-plugin</artifactId>
  86. <version>${surefire-plugin.version}</version>
  87. <configuration>
  88. <systemPropertyVariables>
  89. <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
  90. <maven.home>${maven.home}</maven.home>
  91. </systemPropertyVariables>
  92. </configuration>
  93. </plugin>
  94. <plugin>
  95. <artifactId>maven-failsafe-plugin</artifactId>
  96. <version>${surefire-plugin.version}</version>
  97. <executions>
  98. <execution>
  99. <goals>
  100. <goal>integration-test</goal>
  101. <goal>verify</goal>
  102. </goals>
  103. <configuration>
  104. <systemPropertyVariables>
  105. <native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
  106. <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
  107. <maven.home>${maven.home}</maven.home>
  108. </systemPropertyVariables>
  109. </configuration>
  110. </execution>
  111. </executions>
  112. </plugin>
  113. </plugins>
  114. </build>
  115. <profiles>
  116. <profile>
  117. <id>native</id>
  118. <activation>
  119. <property>
  120. <name>native</name>
  121. </property>
  122. </activation>
  123. <properties>
  124. <skipITs>false</skipITs>
  125. <quarkus.package.type>native</quarkus.package.type>
  126. </properties>
  127. </profile>
  128. <profile>
  129. <id>iouring</id>
  130. <activation>
  131. <property>
  132. <!-- Not enabling this by default yet -->
  133. <name>iouring</name>
  134. </property>
  135. </activation>
  136. <dependencies>
  137. <dependency>
  138. <groupId>io.vertx</groupId>
  139. <artifactId>vertx-io_uring-incubator</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>io.netty.incubator</groupId>
  143. <artifactId>netty-incubator-transport-native-io_uring</artifactId>
  144. <version>${netty.io_uring.version}</version>
  145. <classifier>linux-x86_64</classifier>
  146. </dependency>
  147. </dependencies>
  148. </profile>
  149. </profiles>
  150. </project>