pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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.1.23-20241226</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.platomix</groupId>
  17. <artifactId>platomix-gmetry-system-client</artifactId>
  18. <version>1.2.0</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>com.platomix</groupId>
  37. <artifactId>platomix-gmetry-bi-client</artifactId>
  38. <version>1.0.5</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.httpcomponents</groupId>
  42. <artifactId>httpclient</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.github.whvcse</groupId>
  46. <artifactId>easy-captcha</artifactId>
  47. </dependency>
  48. <!-- 引入fastjson1.x只为ip地址库解析。业务使用fastjson2 -->
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>fastjson</artifactId>
  52. <version>1.2.83</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.kingbase8</groupId>
  56. <artifactId>kingbase8</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.squareup.okhttp3</groupId>
  60. <artifactId>okhttp</artifactId>
  61. <version>4.2.2</version>
  62. <scope>runtime</scope>
  63. </dependency>
  64. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation -->
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-validation</artifactId>
  68. <version>2.4.4</version>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <finalName>platomix-gmetry-system</finalName>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-maven-plugin</artifactId>
  77. </plugin>
  78. <!-- <plugin>-->
  79. <!-- <groupId>io.fabric8</groupId>-->
  80. <!-- <artifactId>docker-maven-plugin</artifactId>-->
  81. <!-- <executions>-->
  82. <!-- <execution>-->
  83. <!-- <id>build-push</id>-->
  84. <!-- <phase>package</phase>-->
  85. <!-- <goals>-->
  86. <!-- <goal>build</goal>-->
  87. <!-- <goal>push</goal>-->
  88. <!-- </goals>-->
  89. <!-- </execution>-->
  90. <!-- </executions>-->
  91. <!-- </plugin>-->
  92. </plugins>
  93. </build>
  94. <profiles>
  95. <profile>
  96. <id>fayuan</id>
  97. <properties>
  98. <profile.env>docker-fayuan</profile.env>
  99. </properties>
  100. </profile>
  101. <profile>
  102. <id>kingbase</id>
  103. <properties>
  104. <profile.env>docker-kingbase</profile.env>
  105. </properties>
  106. </profile>
  107. </profiles>
  108. </project>