pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>net.wanho</groupId>
  6. <artifactId>springboots</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>springboots</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>1.5.14.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. <!--<exclusions>
  27. <exclusion>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-tomcat</artifactId>
  30. </exclusion>
  31. </exclusions>-->
  32. </dependency>
  33. <!--<dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-tomcat</artifactId>
  36. <scope>provided</scope>
  37. </dependency>-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <!--oracle驱动-->
  44. <dependency>
  45. <groupId>com.oracle</groupId>
  46. <artifactId>ojdbc6</artifactId>
  47. <version>11.2.0.3</version>
  48. </dependency>
  49. <!--阿里数据库连接池 -->
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>druid-spring-boot-starter</artifactId>
  53. <version>1.2.4</version>
  54. </dependency>
  55. <!--数据源-->
  56. <!-- <dependency>-->
  57. <!-- <groupId>com.alibaba</groupId>-->
  58. <!-- <artifactId>druid</artifactId>-->
  59. <!-- <version>1.0.11</version>-->
  60. <!-- </dependency>-->
  61. <!--mybatis对springBoot的支持-->
  62. <dependency>
  63. <groupId>org.mybatis.spring.boot</groupId>
  64. <artifactId>mybatis-spring-boot-starter</artifactId>
  65. <version>1.3.0</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.tomcat.embed</groupId>
  69. <artifactId>tomcat-embed-jasper</artifactId>
  70. </dependency>
  71. <!--<dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  74. </dependency>-->
  75. <dependency>
  76. <groupId>jstl</groupId>
  77. <artifactId>jstl</artifactId>
  78. <version>1.2</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>javax.servlet</groupId>
  82. <artifactId>servlet-api</artifactId>
  83. <version>2.5</version>
  84. <scope>provided</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>javax.servlet</groupId>
  88. <artifactId>jsp-api</artifactId>
  89. <version>2.0</version>
  90. <scope>provided</scope>
  91. </dependency>
  92. <!--分页插件-->
  93. <dependency>
  94. <groupId>com.github.pagehelper</groupId>
  95. <artifactId>pagehelper-spring-boot-starter</artifactId>
  96. <version>1.2.2</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.projectlombok</groupId>
  100. <artifactId>lombok</artifactId>
  101. </dependency>
  102. <!-- easyexcel 导出-->
  103. <dependency>
  104. <groupId>com.alibaba</groupId>
  105. <artifactId>easyexcel</artifactId>
  106. <version>3.0.5</version>
  107. </dependency>
  108. <!--解决cglib不兼容问题-->
  109. <dependency>
  110. <groupId>cglib</groupId>
  111. <artifactId>cglib</artifactId>
  112. <version>3.1</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.alibaba</groupId>
  116. <artifactId>fastjson</artifactId>
  117. <version>1.2.70</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>net.sf.json-lib</groupId>
  121. <artifactId>json-lib</artifactId>
  122. <version>2.4</version>
  123. <classifier>jdk15</classifier>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.springframework.boot</groupId>
  127. <artifactId>spring-boot-starter-jdbc</artifactId>
  128. </dependency>
  129. <dependency>
  130. <groupId>dom4j</groupId>
  131. <artifactId>dom4j</artifactId>
  132. <version>1.6.1</version>
  133. </dependency>
  134. </dependencies>
  135. <repositories>
  136. <repository>
  137. <id>jitpack.io</id>
  138. <url>https://jitpack.io</url>
  139. </repository>
  140. </repositories>
  141. <build>
  142. <finalName>hsjtBus</finalName>
  143. <plugins>
  144. <plugin>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-maven-plugin</artifactId>
  147. </plugin>
  148. </plugins>
  149. <resources>
  150. <resource>
  151. <directory>src/main/resources</directory>
  152. </resource>
  153. <resource>
  154. <directory>src/main/webapp</directory>
  155. </resource>
  156. </resources>
  157. </build>
  158. </project>