pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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>resteasy-hibernate</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.quarkus</groupId>
  15. <artifactId>quarkus-hibernate-orm</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>io.quarkus</groupId>
  19. <artifactId>quarkus-scheduler</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>io.quarkus</groupId>
  23. <artifactId>quarkus-resteasy</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>io.quarkus</groupId>
  27. <artifactId>quarkus-resteasy-jackson</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.quarkus</groupId>
  31. <artifactId>quarkus-jdbc-postgresql</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.github.spullara.mustache.java</groupId>
  35. <artifactId>compiler</artifactId>
  36. <version>0.9.6</version>
  37. </dependency>
  38. </dependencies>
  39. </project>