pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>io.quarkus</groupId>
  8. <artifactId>benchmark</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>reactive-routes-pgclient</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.quarkus</groupId>
  15. <artifactId>quarkus-benchmark-common</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>io.quarkus</groupId>
  19. <artifactId>quarkus-reactive-pg-client</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>io.quarkus</groupId>
  23. <artifactId>quarkus-scheduler</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>io.quarkus</groupId>
  27. <artifactId>quarkus-reactive-routes</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.vertx</groupId>
  31. <artifactId>vertx-web</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>io.vertx</groupId>
  35. <artifactId>vertx-web-templ-rocker</artifactId>
  36. </dependency>
  37. <!-- this is necessary to enable rocker to use GuavaHtmlStringify.java -->
  38. <dependency>
  39. <groupId>com.google.guava</groupId>
  40. <artifactId>guava</artifactId>
  41. <version>32.0.0-jre</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>io.netty</groupId>
  45. <artifactId>netty-transport-native-epoll</artifactId>
  46. <classifier>linux-x86_64</classifier>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>com.fizzed</groupId>
  53. <artifactId>rocker-maven-plugin</artifactId>
  54. <version>1.3.0</version>
  55. <executions>
  56. <execution>
  57. <id>generate-rocker-templates</id>
  58. <phase>generate-sources</phase>
  59. <goals>
  60. <goal>generate</goal>
  61. </goals>
  62. <configuration>
  63. <templateDirectory>${project.basedir}/src/main/resources</templateDirectory>
  64. <optimize>true</optimize>
  65. <discardLogicWhitespace>true</discardLogicWhitespace>
  66. <markAsGenerated>false</markAsGenerated>
  67. </configuration>
  68. </execution>
  69. </executions>
  70. <dependencies>
  71. <!-- this is necessary to enable rocker to use GuavaHtmlStringify.java -->
  72. <dependency>
  73. <groupId>com.google.guava</groupId>
  74. <artifactId>guava</artifactId>
  75. <version>32.0.0-jre</version>
  76. </dependency>
  77. </dependencies>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. </project>