pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>io.quarkus</groupId>
  6. <artifactId>benchmark</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <groupId>io.quarkus.benchmark</groupId>
  10. <artifactId>resteasy-reactive-hibernate</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>io.quarkus</groupId>
  14. <artifactId>quarkus-benchmark-common</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>io.quarkus</groupId>
  18. <artifactId>quarkus-hibernate-orm</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>io.quarkus</groupId>
  22. <artifactId>quarkus-scheduler</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.quarkus</groupId>
  26. <artifactId>quarkus-resteasy-reactive</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.quarkus</groupId>
  30. <artifactId>quarkus-resteasy-reactive-jackson</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.quarkus</groupId>
  34. <artifactId>quarkus-jdbc-postgresql</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.vertx</groupId>
  38. <artifactId>vertx-web-templ-rocker</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.netty</groupId>
  42. <artifactId>netty-transport-native-epoll</artifactId>
  43. <classifier>linux-x86_64</classifier>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>com.fizzed</groupId>
  50. <artifactId>rocker-maven-plugin</artifactId>
  51. <version>1.3.0</version>
  52. <executions>
  53. <execution>
  54. <id>generate-rocker-templates</id>
  55. <phase>generate-sources</phase>
  56. <goals>
  57. <goal>generate</goal>
  58. </goals>
  59. <configuration>
  60. <templateDirectory>${project.basedir}/src/main/resources</templateDirectory>
  61. <optimize>true</optimize>
  62. <discardLogicWhitespace>true</discardLogicWhitespace>
  63. <markAsGenerated>false</markAsGenerated>
  64. </configuration>
  65. </execution>
  66. </executions>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>