pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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>com.hssx</groupId>
  7. <artifactId>lsbms</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.hssx</groupId>
  11. <artifactId>center-data</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>center-data</name>
  14. <description>Demo project for Spring Boot</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <repositories>
  19. <repository>
  20. <id>alimaven</id>
  21. <name>aliyun maven</name>
  22. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  23. </repository>
  24. <repository>
  25. <id>alimaven2</id>
  26. <name>aliyun maven 2</name>
  27. <url>http://maven.aliyun.com/nexus/content/repositories/central</url>
  28. </repository>
  29. </repositories>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-devtools</artifactId>
  43. <scope>runtime</scope>
  44. <optional>true</optional>
  45. </dependency>
  46. <!-- pagehelper整合mybatis-plus-->
  47. <!--Pagehelper 依赖 5.1.10 版本,需要去掉 mybatis 依赖,否则会和 mybatis plus 冲突-->
  48. <dependency>
  49. <groupId>com.github.pagehelper</groupId>
  50. <artifactId>pagehelper-spring-boot-starter</artifactId>
  51. <version>1.2.12</version>
  52. <exclusions>
  53. <exclusion>
  54. <groupId>org.mybatis</groupId>
  55. <artifactId>mybatis</artifactId>
  56. </exclusion>
  57. <exclusion>
  58. <groupId>org.mybatis</groupId>
  59. <artifactId>mybatis-spring</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. <!--以下三个依赖是一组-->
  64. <!-- https://mvnrepository.com/artifact/org.apache.axis/axis -->
  65. <dependency>
  66. <groupId>org.apache.axis</groupId>
  67. <artifactId>axis</artifactId>
  68. <version>1.4</version>
  69. </dependency>
  70. <!-- https://mvnrepository.com/artifact/axis/axis-jaxrpc -->
  71. <dependency>
  72. <groupId>axis</groupId>
  73. <artifactId>axis-jaxrpc</artifactId>
  74. <version>1.4</version>
  75. </dependency>
  76. <!-- https://mvnrepository.com/artifact/wsdl4j/wsdl4j -->
  77. <dependency>
  78. <groupId>wsdl4j</groupId>
  79. <artifactId>wsdl4j</artifactId>
  80. <version>1.6.1</version>
  81. </dependency>
  82. <!-- https://mvnrepository.com/artifact/dom4j/dom4j -->
  83. <dependency>
  84. <groupId>dom4j</groupId>
  85. <artifactId>dom4j</artifactId>
  86. <version>1.6.1</version>
  87. </dependency>
  88. <!-- mybatis-plus依赖 -->
  89. <dependency>
  90. <groupId>com.baomidou</groupId>
  91. <artifactId>mybatis-plus-boot-starter</artifactId>
  92. <version>3.1.2</version>
  93. </dependency>
  94. <!-- mybatis-plus代码生成器依赖 -->
  95. <dependency>
  96. <groupId>com.baomidou</groupId>
  97. <artifactId>mybatis-plus-generator</artifactId>
  98. <version>3.1.2</version>
  99. </dependency>
  100. <!-- velocity模板引擎 -->
  101. <dependency>
  102. <groupId>org.apache.velocity</groupId>
  103. <artifactId>velocity-engine-core</artifactId>
  104. <version>2.0</version>
  105. </dependency>
  106. <!-- freemarker 模板引擎-->
  107. <dependency>
  108. <groupId>org.freemarker</groupId>
  109. <artifactId>freemarker</artifactId>
  110. <version>2.3.23</version>
  111. </dependency>
  112. <!-- 文件上传 -->
  113. <dependency>
  114. <groupId>commons-fileupload</groupId>
  115. <artifactId>commons-fileupload</artifactId>
  116. <version>1.3.3</version>
  117. </dependency>
  118. <!-- fastjson -->
  119. <dependency>
  120. <groupId>com.alibaba</groupId>
  121. <artifactId>fastjson</artifactId>
  122. <version>1.2.7</version>
  123. </dependency>
  124. <!-- https://mvnrepository.com/artifact/commons-net/commons-net -->
  125. <dependency>
  126. <groupId>commons-net</groupId>
  127. <artifactId>commons-net</artifactId>
  128. <version>3.6</version>
  129. </dependency>
  130. <!--读取excel文件-->
  131. <dependency>
  132. <groupId>org.apache.poi</groupId>
  133. <artifactId>poi</artifactId>
  134. <version>3.17</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.poi</groupId>
  138. <artifactId>poi-ooxml</artifactId>
  139. <version>3.17</version>
  140. </dependency>
  141. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  142. <dependency>
  143. <groupId>org.apache.commons</groupId>
  144. <artifactId>commons-lang3</artifactId>
  145. <version>3.8.1</version>
  146. </dependency>
  147. <!-- https://mvnrepository.com/artifact/io.swagger/swagger-annotations -->
  148. <dependency>
  149. <groupId>io.swagger</groupId>
  150. <artifactId>swagger-annotations</artifactId>
  151. <version>1.5.15</version>
  152. </dependency>
  153. </dependencies>
  154. <build>
  155. <plugins>
  156. <plugin>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-maven-plugin</artifactId>
  159. </plugin>
  160. </plugins>
  161. </build>
  162. </project>