pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. <groupId>com.test.hserver</groupId>
  7. <artifactId>hserver</artifactId>
  8. <version>1.0</version>
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. <version.hikaricp>3.3.1</version.hikaricp>
  12. <version.postgres>42.3.3</version.postgres>
  13. <version.hserver>2.9.81</version.hserver>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>top.hserver</groupId>
  18. <artifactId>HServer</artifactId>
  19. <version>${version.hserver}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.zaxxer</groupId>
  23. <artifactId>HikariCP</artifactId>
  24. <version>${version.hikaricp}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.postgresql</groupId>
  28. <artifactId>postgresql</artifactId>
  29. <version>${version.postgres}</version>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <groupId>net.hserver.plugins.maven</groupId>
  36. <artifactId>hserver-maven-plugin</artifactId>
  37. <version>3.0</version>
  38. <executions>
  39. <execution>
  40. <phase>package</phase>
  41. <goals>
  42. <goal>repackage</goal>
  43. </goals>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. <plugin>
  48. <groupId>org.apache.maven.plugins</groupId>
  49. <artifactId>maven-compiler-plugin</artifactId>
  50. <configuration>
  51. <source>8</source>
  52. <target>8</target>
  53. </configuration>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>