pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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>4.0.18</version>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.platomix</groupId>
  15. <artifactId>platomix-gmetry-system-client</artifactId>
  16. <version>1.1.7</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>2.2.9</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.platomix</groupId>
  30. <artifactId>platomix-gmetry-auth</artifactId>
  31. <version>1.0.30</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.platomix</groupId>
  35. <artifactId>platomix-gmetry-bi-client</artifactId>
  36. <version>1.0.5</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.httpcomponents</groupId>
  40. <artifactId>httpclient</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.github.whvcse</groupId>
  44. <artifactId>easy-captcha</artifactId>
  45. </dependency>
  46. <!-- 引入fastjson1.x只为ip地址库解析。业务使用fastjson2 -->
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>fastjson</artifactId>
  50. <version>1.2.83</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.kingbase8</groupId>
  54. <artifactId>kingbase8</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.squareup.okhttp3</groupId>
  58. <artifactId>okhttp</artifactId>
  59. <version>4.2.2</version>
  60. <scope>runtime</scope>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <finalName>platomix-gmetry-system</finalName>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. </plugin>
  70. <!-- <plugin>-->
  71. <!-- <groupId>io.fabric8</groupId>-->
  72. <!-- <artifactId>docker-maven-plugin</artifactId>-->
  73. <!-- <executions>-->
  74. <!-- <execution>-->
  75. <!-- <id>build-push</id>-->
  76. <!-- <phase>package</phase>-->
  77. <!-- <goals>-->
  78. <!-- <goal>build</goal>-->
  79. <!-- <goal>push</goal>-->
  80. <!-- </goals>-->
  81. <!-- </execution>-->
  82. <!-- </executions>-->
  83. <!-- </plugin>-->
  84. </plugins>
  85. </build>
  86. <profiles>
  87. <profile>
  88. <id>fayuan</id>
  89. <properties>
  90. <profile.env>docker-fayuan</profile.env>
  91. </properties>
  92. </profile>
  93. <profile>
  94. <id>kingbase</id>
  95. <properties>
  96. <profile.env>docker-kingbase</profile.env>
  97. </properties>
  98. </profile>
  99. </profiles>
  100. </project>