pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.platomix</groupId>
  7. <artifactId>platomix-pom</artifactId>
  8. <version>1.1.4</version>
  9. <relativePath />
  10. </parent>
  11. <artifactId>platomix-gmetry-upgrade</artifactId>
  12. <version>4.0.5-20240919</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.platomix</groupId>
  16. <artifactId>platomix-gmetry-framework</artifactId>
  17. <version>2.3.5</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.apache.commons</groupId>
  21. <artifactId>commons-lang3</artifactId>
  22. <version>3.9</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>net.lingala.zip4j</groupId>
  26. <artifactId>zip4j</artifactId>
  27. <version>2.9.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.kingbase8</groupId>
  31. <artifactId>kingbase8</artifactId>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <finalName>platomix-gmetry-deploy</finalName>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-maven-plugin</artifactId>
  40. </plugin>
  41. <plugin>
  42. <groupId>io.fabric8</groupId>
  43. <artifactId>docker-maven-plugin</artifactId>
  44. <executions>
  45. <execution>
  46. <id>build-push</id>
  47. <phase>package</phase>
  48. <goals>
  49. <goal>build</goal>
  50. <goal>push</goal>
  51. </goals>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. <repositories>
  58. <repository>
  59. <id>alimaven</id>
  60. <name>aliyun maven</name>
  61. <url>https://maven.aliyun.com/repository/public/</url>
  62. <snapshots>
  63. <enabled>false</enabled>
  64. </snapshots>
  65. </repository>
  66. <repository>
  67. <id>platomix-release</id>
  68. <name>NexusReleases</name>
  69. <url>http://windata.platomix.net/nexus/repository/maven-public/</url>
  70. </repository>
  71. </repositories>
  72. </project>