pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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>com.xintong.visualInspection</groupId>
  6. <artifactId>visualInspection</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <name>VisualInspection</name>
  10. <description>视屏稽查</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>1.5.2.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. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-security</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.mybatis.spring.boot</groupId>
  33. <artifactId>mybatis-spring-boot-starter</artifactId>
  34. <version>1.3.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-remote-shell</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-data-redis</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-devtools</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>io.jsonwebtoken</groupId>
  54. <artifactId>jjwt</artifactId>
  55. <version>0.7.0</version>
  56. </dependency>
  57. <!--<dependency> -->
  58. <!--<groupId>org.springframework.session</groupId> -->
  59. <!--<artifactId>spring-session-data-redis</artifactId> -->
  60. <!--</dependency> -->
  61. <!--<dependency> -->
  62. <!--<groupId>redis.clients</groupId> -->
  63. <!--<artifactId>jedis</artifactId> -->
  64. <!--<version>2.9.0</version> -->
  65. <!--</dependency> -->
  66. <!--<dependency> -->
  67. <!--<groupId>org.springframework.boot</groupId> -->
  68. <!--<artifactId>spring-boot-starter-data-jpa</artifactId> -->
  69. <!--</dependency> -->
  70. <!-- http://mvnrepository.com/artifact/org.thymeleaf.extras/thymeleaf-extras-springsecurity4 -->
  71. <dependency>
  72. <groupId>org.thymeleaf.extras</groupId>
  73. <artifactId>thymeleaf-extras-springsecurity4</artifactId>
  74. <version>2.1.2.RELEASE</version>
  75. </dependency>
  76. <!-- https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf-spring4 -->
  77. <!--<dependency> -->
  78. <!--<groupId>org.thymeleaf</groupId> -->
  79. <!--<artifactId>thymeleaf-spring4</artifactId> -->
  80. <!--<version>3.0.5.RELEASE</version> -->
  81. <!--</dependency> -->
  82. <!--<dependency> -->
  83. <!--<groupId>org.springframework.security</groupId> -->
  84. <!--<artifactId>spring-security-taglibs</artifactId> -->
  85. <!--<version>4.2.1.RELEASE</version> -->
  86. <!--</dependency> -->
  87. <dependency>
  88. <groupId>com.github.pagehelper</groupId>
  89. <artifactId>pagehelper</artifactId>
  90. <version>4.2.1</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.projectlombok</groupId>
  94. <artifactId>lombok</artifactId>
  95. <optional>true</optional>
  96. </dependency>
  97. <dependency>
  98. <groupId>mysql</groupId>
  99. <artifactId>mysql-connector-java</artifactId>
  100. <version>5.1.41</version><!--$NO-MVN-MAN-VER$-->
  101. </dependency>
  102. <dependency>
  103. <groupId>com.alibaba</groupId>
  104. <artifactId>druid</artifactId>
  105. <version>1.0.29</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.alibaba</groupId>
  109. <artifactId>fastjson</artifactId>
  110. <version>1.2.31</version>
  111. </dependency>
  112. <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->
  113. <dependency>
  114. <groupId>org.aspectj</groupId>
  115. <artifactId>aspectjrt</artifactId>
  116. <version>1.8.10</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.aspectj</groupId>
  120. <artifactId>aspectjweaver</artifactId>
  121. <version>1.8.10</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-starter-test</artifactId>
  126. <scope>test</scope>
  127. </dependency>
  128. </dependencies>
  129. <dependencyManagement>
  130. <dependencies>
  131. <dependency>
  132. <groupId>org.springframework.cloud</groupId>
  133. <artifactId>spring-cloud-dependencies</artifactId>
  134. <version>Dalston.RELEASE</version>
  135. <type>pom</type>
  136. <scope>import</scope>
  137. </dependency>
  138. </dependencies>
  139. </dependencyManagement>
  140. <build>
  141. <plugins>
  142. <plugin>
  143. <groupId>org.springframework.boot</groupId>
  144. <artifactId>spring-boot-maven-plugin</artifactId>
  145. </plugin>
  146. <plugin>
  147. <artifactId>maven-compiler-plugin</artifactId>
  148. <configuration>
  149. <source>${java.version}</source>
  150. <target>${java.version}</target>
  151. </configuration>
  152. </plugin>
  153. </plugins>
  154. <resources>
  155. <resource>
  156. <directory>${basedir}/src/main/resources</directory>
  157. <filtering>true</filtering>
  158. <includes>
  159. <include>**/application*.yml</include>
  160. <include>**/application*.properties</include>
  161. </includes>
  162. </resource>
  163. <resource>
  164. <directory>${basedir}/src/main/resources</directory>
  165. <excludes>
  166. <exclude>**/application*.yml</exclude>
  167. <exclude>**/application*.properties</exclude>
  168. </excludes>
  169. </resource>
  170. <resource>
  171. <directory>src/main/java</directory>
  172. <includes>
  173. <include>**/*.properties</include>
  174. <include>**/*.xml</include>
  175. </includes>
  176. <filtering>false</filtering>
  177. </resource>
  178. <resource>
  179. <directory>src/main/resources</directory>
  180. <targetPath>BOOT-INF/lib/</targetPath>
  181. <includes>
  182. <include>**/*.jar</include>
  183. </includes>
  184. </resource>
  185. <resource>
  186. <directory>lib</directory>
  187. <targetPath>BOOT-INF/lib/</targetPath>
  188. <includes>
  189. <include>*.jar</include>
  190. </includes>
  191. </resource>
  192. </resources>
  193. </build>
  194. <repositories>
  195. <repository>
  196. <id>spring-releases</id>
  197. <name>Spring Releases</name>
  198. <url>https://repo.spring.io/libs-release</url>
  199. </repository>
  200. </repositories>
  201. <pluginRepositories>
  202. <pluginRepository>
  203. <id>spring-releases</id>
  204. <name>Spring Releases</name>
  205. <url>https://repo.spring.io/libs-release</url>
  206. </pluginRepository>
  207. </pluginRepositories>
  208. </project>