pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>war</packaging>
  6. <groupId>com.techempower.gemini.hello</groupId>
  7. <artifactId>HelloWorld</artifactId>
  8. <version>0.0.1</version>
  9. <properties>
  10. <maven.compiler.source>10</maven.compiler.source>
  11. <maven.compiler.target>10</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>mysql</groupId>
  18. <artifactId>mysql-connector-java</artifactId>
  19. <version>5.1.34</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.postgresql</groupId>
  23. <artifactId>postgresql</artifactId>
  24. <version>42.1.4</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.techempower</groupId>
  28. <artifactId>gemini</artifactId>
  29. <version>2.21.1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.techempower</groupId>
  33. <artifactId>gemini-resin</artifactId>
  34. <version>2.21.1</version>
  35. </dependency>
  36. </dependencies>
  37. </project>