pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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.6-20240925</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.3.6</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. </dependencies>
  65. <build>
  66. <finalName>platomix-gmetry-system</finalName>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-maven-plugin</artifactId>
  71. </plugin>
  72. <!-- <plugin>-->
  73. <!-- <groupId>io.fabric8</groupId>-->
  74. <!-- <artifactId>docker-maven-plugin</artifactId>-->
  75. <!-- <executions>-->
  76. <!-- <execution>-->
  77. <!-- <id>build-push</id>-->
  78. <!-- <phase>package</phase>-->
  79. <!-- <goals>-->
  80. <!-- <goal>build</goal>-->
  81. <!-- <goal>push</goal>-->
  82. <!-- </goals>-->
  83. <!-- </execution>-->
  84. <!-- </executions>-->
  85. <!-- </plugin>-->
  86. </plugins>
  87. </build>
  88. <profiles>
  89. <profile>
  90. <id>fayuan</id>
  91. <properties>
  92. <profile.env>docker-fayuan</profile.env>
  93. </properties>
  94. </profile>
  95. <profile>
  96. <id>kingbase</id>
  97. <properties>
  98. <profile.env>docker-kingbase</profile.env>
  99. </properties>
  100. </profile>
  101. </profiles>
  102. </project>