义乌公路
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

117 lignes
4.4KB

  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. <groupId>com.ningdatech</groupId>
  6. <artifactId>ningda-yw-road</artifactId>
  7. <packaging>pom</packaging>
  8. <version>1.0.0</version>
  9. <name>ningda-yw-road</name>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <spring-boot.version>2.6.15</spring-boot.version>
  13. <maven.compiler.source>1.8</maven.compiler.source>
  14. <maven.compiler.target>1.8</maven.compiler.target>
  15. <mybatis.plus.version>3.5.4.1</mybatis.plus.version>
  16. <io.springfox-swagger2.version>3.0.0</io.springfox-swagger2.version>
  17. <swagger-knife.version>3.0.3</swagger-knife.version>
  18. <fast.json.version>1.2.9</fast.json.version>
  19. <guava.version>31.1-jre</guava.version>
  20. <commons-pool2.version>2.11.1</commons-pool2.version>
  21. </properties>
  22. <dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>cn.hutool</groupId>
  26. <artifactId>hutool-all</artifactId>
  27. <version>5.8.18</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-dependencies</artifactId>
  32. <version>${spring-boot.version}</version>
  33. <type>pom</type>
  34. <scope>import</scope>
  35. </dependency>
  36. <!-- mybatis plus -->
  37. <dependency>
  38. <groupId>com.baomidou</groupId>
  39. <artifactId>mybatis-plus-boot-starter</artifactId>
  40. <version>${mybatis.plus.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.baomidou</groupId>
  44. <artifactId>mybatis-plus-extension</artifactId>
  45. <version>${mybatis.plus.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>fastjson</artifactId>
  50. <version>${fast.json.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.google.guava</groupId>
  54. <artifactId>guava</artifactId>
  55. <version>${guava.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.ningdatech</groupId>
  59. <artifactId>nd-swagger2-starter</artifactId>
  60. <version>1.0.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.ningdatech</groupId>
  64. <artifactId>nd-openapi-signature-starter</artifactId>
  65. <version>1.0.0</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.aliyun.oss</groupId>
  69. <artifactId>aliyun-sdk-oss</artifactId>
  70. <version>3.15.0</version>
  71. </dependency>
  72. <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  73. <dependency>
  74. <groupId>com.alibaba</groupId>
  75. <artifactId>easyexcel</artifactId>
  76. <version>3.1.2</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.ningdatech</groupId>
  80. <artifactId>nd-sms-send-starter</artifactId>
  81. <version>1.0.0</version>
  82. </dependency>
  83. <!--导入导出-->
  84. <dependency>
  85. <groupId>cn.afterturn</groupId>
  86. <artifactId>easypoi-base</artifactId>
  87. <version>4.2.0</version>
  88. </dependency>
  89. </dependencies>
  90. </dependencyManagement>
  91. <pluginRepositories>
  92. <!--阿里云代理Spring 插件仓库-->
  93. <pluginRepository>
  94. <id>spring-plugin</id>
  95. <name>spring-plugin</name>
  96. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  97. <releases>
  98. <enabled>true</enabled>
  99. </releases>
  100. <snapshots>
  101. <enabled>false</enabled>
  102. </snapshots>
  103. </pluginRepository>
  104. </pluginRepositories>
  105. <modules>
  106. <module>ningda-yw-api</module>
  107. </modules>
  108. </project>