柯桥增值式服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

152 lines
5.6KB

  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>kq-value-added-project</artifactId>
  7. <packaging>pom</packaging>
  8. <version>1.0.0</version>
  9. <name>kq-vas-project</name>
  10. <description>柯桥增值式服务项目</description>
  11. <properties>
  12. <skipTests>true</skipTests>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <spring-boot.version>2.6.11</spring-boot.version>
  15. <maven.compiler.source>1.8</maven.compiler.source>
  16. <maven.compiler.target>1.8</maven.compiler.target>
  17. <jwt.version>3.7.0</jwt.version>
  18. <mybatis.plus.version>3.5.1</mybatis.plus.version>
  19. <io.springfox-swagger2.version>3.0.0</io.springfox-swagger2.version>
  20. <swagger-knife.version>3.0.3</swagger-knife.version>
  21. <fastjson.version>1.2.83</fastjson.version>
  22. <guava.version>31.1-jre</guava.version>
  23. <commons-pool2.version>2.11.1</commons-pool2.version>
  24. </properties>
  25. <dependencyManagement>
  26. <dependencies>
  27. <!--<dependency>
  28. <groupId>org.apache.poi</groupId>
  29. <artifactId>poi</artifactId>
  30. <version>5.2.2</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.poi</groupId>
  34. <artifactId>poi-ooxml</artifactId>
  35. <version>5.2.2</version>
  36. </dependency>-->
  37. <dependency>
  38. <groupId>com.alibaba</groupId>
  39. <artifactId>fastjson</artifactId>
  40. <version>${fastjson.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-dependencies</artifactId>
  45. <version>${spring-boot.version}</version>
  46. <type>pom</type>
  47. <scope>import</scope>
  48. </dependency>
  49. <!-- mybatis plus -->
  50. <dependency>
  51. <groupId>com.baomidou</groupId>
  52. <artifactId>mybatis-plus-boot-starter</artifactId>
  53. <version>${mybatis.plus.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.google.guava</groupId>
  57. <artifactId>guava</artifactId>
  58. <version>${guava.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.ningdatech</groupId>
  62. <artifactId>nd-basic</artifactId>
  63. <version>1.0.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.baomidou</groupId>
  67. <artifactId>mybatis-plus-extension</artifactId>
  68. <version>${mybatis.plus.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>easyexcel-core</artifactId>
  73. <version>3.1.2</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.ningdatech</groupId>
  77. <artifactId>nd-file-starter</artifactId>
  78. <version>1.0.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.ningdatech</groupId>
  82. <artifactId>nd-zwdd-starter</artifactId>
  83. <version>1.0.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.ningdatech</groupId>
  87. <artifactId>nd-cache-starter</artifactId>
  88. <version>1.0.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.ningdatech</groupId>
  92. <artifactId>nd-log-starter</artifactId>
  93. <version>1.0.0</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.ningdatech</groupId>
  97. <artifactId>nd-irs-starter</artifactId>
  98. <version>1.0.0</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>joda-time</groupId>
  102. <artifactId>joda-time</artifactId>
  103. <version>2.10.6</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.ningdatech</groupId>
  107. <artifactId>nd-swagger2-starter</artifactId>
  108. <version>1.0.0</version>
  109. </dependency>
  110. </dependencies>
  111. </dependencyManagement>
  112. <repositories>
  113. <!--阿里云主仓库,代理了maven central和jcenter仓库-->
  114. <repository>
  115. <id>aliyun</id>
  116. <name>aliyun</name>
  117. <url>https://maven.aliyun.com/repository/public</url>
  118. <releases>
  119. <enabled>true</enabled>
  120. </releases>
  121. <snapshots>
  122. <enabled>false</enabled>
  123. </snapshots>
  124. </repository>
  125. </repositories>
  126. <pluginRepositories>
  127. <!--阿里云代理Spring 插件仓库-->
  128. <pluginRepository>
  129. <id>spring-plugin</id>
  130. <name>spring-plugin</name>
  131. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  132. <releases>
  133. <enabled>true</enabled>
  134. </releases>
  135. <snapshots>
  136. <enabled>false</enabled>
  137. </snapshots>
  138. </pluginRepository>
  139. </pluginRepositories>
  140. <modules>
  141. <module>kq-vas-api</module>
  142. <module>kq-vas-gen</module>
  143. </modules>
  144. </project>