pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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-reactive</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-scheduler</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>io.quarkus</groupId>
  22. <artifactId>quarkus-reactive-pg-client</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.quarkus</groupId>
  26. <artifactId>quarkus-hibernate-reactive</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.quarkus</groupId>
  30. <artifactId>quarkus-resteasy-reactive</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.quarkus</groupId>
  34. <artifactId>quarkus-resteasy-reactive-jackson</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.vertx</groupId>
  38. <artifactId>vertx-web-templ-rocker</artifactId>
  39. </dependency>
  40. <!-- this is necessary to enable rocker to use GuavaHtmlStringify.java -->
  41. <dependency>
  42. <groupId>com.google.guava</groupId>
  43. <artifactId>guava</artifactId>
  44. <version>32.0.0-jre</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.netty</groupId>
  48. <artifactId>netty-transport-native-epoll</artifactId>
  49. <classifier>linux-x86_64</classifier>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>com.fizzed</groupId>
  56. <artifactId>rocker-maven-plugin</artifactId>
  57. <version>1.3.0</version>
  58. <executions>
  59. <execution>
  60. <id>generate-rocker-templates</id>
  61. <phase>generate-sources</phase>
  62. <goals>
  63. <goal>generate</goal>
  64. </goals>
  65. <configuration>
  66. <templateDirectory>${project.basedir}/src/main/resources</templateDirectory>
  67. <optimize>true</optimize>
  68. <discardLogicWhitespace>true</discardLogicWhitespace>
  69. <markAsGenerated>false</markAsGenerated>
  70. </configuration>
  71. </execution>
  72. </executions>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>