Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" 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>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.6.2</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.bohuikeji</groupId>
  12. <artifactId>delivery</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>bhkj-delivery</name>
  15. <packaging>pom</packaging>
  16. <description>同城急送二期项目</description>
  17. <repositories>
  18. <repository>
  19. <id>aliyun</id>
  20. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  21. </repository>
  22. </repositories>
  23. <properties>
  24. <java.version>1.8</java.version>
  25. <druid.version>1.2.8</druid.version>
  26. <mybatis-plus.version>3.1.0</mybatis-plus.version>
  27. <alibaba-json.version>1.2.79</alibaba-json.version>
  28. <guava.version>27.0.1-jre</guava.version>
  29. <commons-lang3.version>3.8.1</commons-lang3.version>
  30. </properties>
  31. <!--包含模块-->
  32. <modules>
  33. <module>frame-module-admin</module>
  34. <module>bhkj-delivery-module-backstage</module>
  35. </modules>
  36. <!--子模块必选继承包-->
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. <version>1.18.22</version>
  42. <scope>provided</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>fastjson</artifactId>
  47. <version>${alibaba-json.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.google.guava</groupId>
  51. <artifactId>guava</artifactId>
  52. <version>${guava.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.commons</groupId>
  56. <artifactId>commons-lang3</artifactId>
  57. <version>${commons-lang3.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.github.xiaoymin</groupId>
  61. <artifactId>knife4j-spring-boot-starter</artifactId>
  62. <version>2.0.9</version>
  63. </dependency>
  64. <!--支付宝沙箱模式SDK-->
  65. <!--<dependency>
  66. <groupId>com.alipay.sdk</groupId>
  67. <artifactId>alipay-sdk-java</artifactId>
  68. <version>4.9.5.ALL</version>
  69. </dependency>-->
  70. <!--支付宝旧版SDK-->
  71. <!-- <dependency>
  72. <groupId>com.alipay.sdk</groupId>
  73. <artifactId>alipay-sdk-java</artifactId>
  74. <version>4.22.10.ALL</version>
  75. </dependency>-->
  76. <dependency>
  77. <groupId>com.alipay.sdk</groupId>
  78. <artifactId>alipay-sdk-java</artifactId>
  79. <version>4.23.21.ALL</version>
  80. </dependency>
  81. </dependencies>
  82. <!--子模块可选继承包-->
  83. <dependencyManagement>
  84. <dependencies>
  85. <dependency>
  86. <groupId>com.baomidou</groupId>
  87. <artifactId>mybatis-plus-boot-starter</artifactId>
  88. <version>${mybatis-plus.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.alibaba</groupId>
  92. <artifactId>druid-spring-boot-starter</artifactId>
  93. <version>${druid.version}</version>
  94. </dependency>
  95. </dependencies>
  96. </dependencyManagement>
  97. <!--指定使用maven打包-->
  98. <build>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-compiler-plugin</artifactId>
  103. <version>3.8.1</version>
  104. <configuration>
  105. <source>${java.version}</source>
  106. <target>${java.version}</target>
  107. </configuration>
  108. </plugin>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-surefire-plugin</artifactId>
  112. <version>3.0.0-M3</version>
  113. <configuration>
  114. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  115. </configuration>
  116. </plugin>
  117. </plugins>
  118. </build>
  119. </project>