pom.xml 698 B

12345678910111213141516171819202122232425
  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>pgclient</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.quarkus.benchmark</groupId>
  15. <artifactId>base</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>io.quarkus</groupId>
  19. <artifactId>quarkus-reactive-pg-client</artifactId>
  20. </dependency>
  21. </dependencies>
  22. </project>