pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. <relativePath>../</relativePath>
  9. </parent>
  10. <groupId>io.quarkus.benchmark</groupId>
  11. <artifactId>reactive-routes-pgclient</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.quarkus</groupId>
  15. <artifactId>quarkus-scheduler</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-vertx-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>io.vertx</groupId>
  27. <artifactId>vertx-web-templ-rocker</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.netty</groupId>
  31. <artifactId>netty-transport-native-epoll</artifactId>
  32. <classifier>linux-x86_64</classifier>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.spullara.mustache.java</groupId>
  36. <artifactId>compiler</artifactId>
  37. <version>0.9.6</version>
  38. </dependency>
  39. </dependencies>
  40. </project>