pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. <artifactId>platomix-gmetry-system-api</artifactId>
  11. <version>3.4.43</version>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.platomix</groupId>
  15. <artifactId>platomix-gmetry-system-client</artifactId>
  16. <version>1.1.3</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.platomix</groupId>
  20. <artifactId>platomix-gmetry-message</artifactId>
  21. <version>1.0.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.platomix</groupId>
  25. <artifactId>platomix-gmetry-framework</artifactId>
  26. <version>1.1.1</version>
  27. <exclusions>
  28. <exclusion>
  29. <groupId>io.lettuce</groupId>
  30. <artifactId>lettuce-core</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.platomix</groupId>
  36. <artifactId>platomix-gmetry-auth</artifactId>
  37. <version>1.0.30</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.httpcomponents</groupId>
  41. <artifactId>httpclient</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.github.whvcse</groupId>
  45. <artifactId>easy-captcha</artifactId>
  46. </dependency>
  47. <!-- 引入fastjson1.x只为ip地址库解析。业务使用fastjson2 -->
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>fastjson</artifactId>
  51. <version>1.2.83</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-pool2</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>redis.clients</groupId>
  59. <artifactId>jedis</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.kingbase8</groupId>
  63. <artifactId>kingbase8</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.squareup.okhttp3</groupId>
  67. <artifactId>okhttp</artifactId>
  68. <version>4.2.2</version>
  69. <scope>runtime</scope>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <finalName>platomix-gmetry-system</finalName>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-maven-plugin</artifactId>
  78. </plugin>
  79. <!-- <plugin>-->
  80. <!-- <groupId>io.fabric8</groupId>-->
  81. <!-- <artifactId>docker-maven-plugin</artifactId>-->
  82. <!-- <executions>-->
  83. <!-- <execution>-->
  84. <!-- <id>build-push</id>-->
  85. <!-- <phase>package</phase>-->
  86. <!-- <goals>-->
  87. <!-- <goal>build</goal>-->
  88. <!-- <goal>push</goal>-->
  89. <!-- </goals>-->
  90. <!-- </execution>-->
  91. <!-- </executions>-->
  92. <!-- </plugin>-->
  93. </plugins>
  94. </build>
  95. </project>