pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. <!-- 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. <dependencies>
  74. <!-- this is necessary to enable rocker to use GuavaHtmlStringify.java -->
  75. <dependency>
  76. <groupId>com.google.guava</groupId>
  77. <artifactId>guava</artifactId>
  78. <version>32.0.0-jre</version>
  79. </dependency>
  80. </dependencies>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </project>