pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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-gmetry-system</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <!-- 日期和版本号需要同时升级-->
  11. <!-- 4.2.64-2024.07.22->4.2.65-2024.07.22->4.2.66-2024.07.23-->
  12. <artifactId>platomix-gmetry-system-api</artifactId>
  13. <version>4.2.1-20250122</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.platomix</groupId>
  17. <artifactId>platomix-gmetry-system-client</artifactId>
  18. <version>1.2.1</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.platomix</groupId>
  22. <artifactId>platomix-gmetry-message</artifactId>
  23. <version>1.0.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.platomix</groupId>
  27. <artifactId>platomix-gmetry-framework</artifactId>
  28. <version>2.5.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.platomix</groupId>
  32. <artifactId>platomix-gmetry-auth</artifactId>
  33. <version>1.0.30</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.httpcomponents</groupId>
  37. <artifactId>httpclient</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.github.whvcse</groupId>
  41. <artifactId>easy-captcha</artifactId>
  42. </dependency>
  43. <!-- 引入fastjson1.x只为ip地址库解析。业务使用fastjson2 -->
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>fastjson</artifactId>
  47. <version>1.2.83</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.kingbase8</groupId>
  51. <artifactId>kingbase8</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.squareup.okhttp3</groupId>
  55. <artifactId>okhttp</artifactId>
  56. <version>4.2.2</version>
  57. <scope>runtime</scope>
  58. </dependency>
  59. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation -->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-validation</artifactId>
  63. <version>2.4.4</version>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <finalName>platomix-gmetry-system</finalName>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. </plugin>
  73. <!-- <plugin>-->
  74. <!-- <groupId>io.fabric8</groupId>-->
  75. <!-- <artifactId>docker-maven-plugin</artifactId>-->
  76. <!-- <executions>-->
  77. <!-- <execution>-->
  78. <!-- <id>build-push</id>-->
  79. <!-- <phase>package</phase>-->
  80. <!-- <goals>-->
  81. <!-- <goal>build</goal>-->
  82. <!-- <goal>push</goal>-->
  83. <!-- </goals>-->
  84. <!-- </execution>-->
  85. <!-- </executions>-->
  86. <!-- </plugin>-->
  87. </plugins>
  88. </build>
  89. <profiles>
  90. <profile>
  91. <id>fayuan</id>
  92. <properties>
  93. <profile.env>docker-fayuan</profile.env>
  94. </properties>
  95. </profile>
  96. <profile>
  97. <id>kingbase</id>
  98. <properties>
  99. <profile.env>docker-kingbase</profile.env>
  100. </properties>
  101. </profile>
  102. </profiles>
  103. </project>