pom.xml 5.2 KB

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