pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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-pom</artifactId>
  8. <version>1.1.7</version>
  9. <relativePath />
  10. </parent>
  11. <artifactId>platomix-gmetry-framework</artifactId>
  12. <version>2.5.2</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.platomix</groupId>
  16. <artifactId>platomix-gmetry-common</artifactId>
  17. <version>1.1.8</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. <!-- 排除Tomcat依赖 -->
  23. <exclusions>
  24. <exclusion>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-tomcat</artifactId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-undertow</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-jdbc</artifactId>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>com.zaxxer</groupId>
  40. <artifactId>HikariCP</artifactId>
  41. </exclusion>
  42. </exclusions>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.baomidou</groupId>
  46. <artifactId>mybatis-plus-boot-starter</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.baomidou</groupId>
  50. <artifactId>dynamic-datasource-creator</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>mysql</groupId>
  58. <artifactId>mysql-connector-java</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.alibaba</groupId>
  62. <artifactId>druid-spring-boot-starter</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.github.xiaoymin</groupId>
  66. <artifactId>knife4j-spring-boot-starter</artifactId>
  67. </dependency>
  68. <!-- JWT -->
  69. <dependency>
  70. <groupId>io.jsonwebtoken</groupId>
  71. <artifactId>jjwt-impl</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>io.jsonwebtoken</groupId>
  75. <artifactId>jjwt-jackson</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-data-redis</artifactId>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>io.lettuce</groupId>
  83. <artifactId>lettuce-core</artifactId>
  84. </exclusion>
  85. </exclusions>
  86. </dependency>
  87. <!-- protostuff -->
  88. <dependency>
  89. <groupId>io.protostuff</groupId>
  90. <artifactId>protostuff-core</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>io.protostuff</groupId>
  94. <artifactId>protostuff-runtime</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>javax.validation</groupId>
  98. <artifactId>validation-api</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.google.guava</groupId>
  102. <artifactId>guava</artifactId>
  103. </dependency>
  104. <!-- jedis连接池 -->
  105. <dependency>
  106. <groupId>redis.clients</groupId>
  107. <artifactId>jedis</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.commons</groupId>
  111. <artifactId>commons-pool2</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.flywaydb</groupId>
  115. <artifactId>flyway-core</artifactId>
  116. <version>7.15.0</version>
  117. </dependency>
  118. </dependencies>
  119. <build>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.apache.maven.plugins</groupId>
  123. <artifactId>maven-source-plugin</artifactId>
  124. </plugin>
  125. </plugins>
  126. </build>
  127. <repositories>
  128. <repository>
  129. <id>alimaven</id>
  130. <name>aliyun maven</name>
  131. <url>https://maven.aliyun.com/repository/public/</url>
  132. <snapshots>
  133. <enabled>false</enabled>
  134. </snapshots>
  135. </repository>
  136. <repository>
  137. <id>platomix-release</id>
  138. <name>NexusReleases</name>
  139. <url>http://windata.platomix.net/nexus/repository/maven-public/</url>
  140. </repository>
  141. </repositories>
  142. </project>