pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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.2.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-jpa</artifactId>-->
  47. <!--</dependency>-->
  48. <!-- http://mvnrepository.com/artifact/org.thymeleaf.extras/thymeleaf-extras-springsecurity4 -->
  49. <dependency>
  50. <groupId>org.thymeleaf.extras</groupId>
  51. <artifactId>thymeleaf-extras-springsecurity4</artifactId>
  52. <version>2.1.2.RELEASE</version>
  53. </dependency>
  54. <!-- https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf-spring4 -->
  55. <!--<dependency>-->
  56. <!--<groupId>org.thymeleaf</groupId>-->
  57. <!--<artifactId>thymeleaf-spring4</artifactId>-->
  58. <!--<version>3.0.5.RELEASE</version>-->
  59. <!--</dependency>-->
  60. <!--<dependency>-->
  61. <!--<groupId>org.springframework.security</groupId>-->
  62. <!--<artifactId>spring-security-taglibs</artifactId>-->
  63. <!--<version>4.2.1.RELEASE</version>-->
  64. <!--</dependency>-->
  65. <dependency>
  66. <groupId>com.github.pagehelper</groupId>
  67. <artifactId>pagehelper</artifactId>
  68. <version>4.2.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. <optional>true</optional>
  74. </dependency>
  75. <dependency>
  76. <groupId>mysql</groupId>
  77. <artifactId>mysql-connector-java</artifactId>
  78. <version>5.1.41</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.alibaba</groupId>
  82. <artifactId>druid</artifactId>
  83. <version>1.0.29</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>fastjson</artifactId>
  88. <version>1.2.30</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-test</artifactId>
  93. <scope>test</scope>
  94. </dependency>
  95. </dependencies>
  96. <dependencyManagement>
  97. <dependencies>
  98. <dependency>
  99. <groupId>org.springframework.cloud</groupId>
  100. <artifactId>spring-cloud-dependencies</artifactId>
  101. <version>Dalston.RC1</version>
  102. <type>pom</type>
  103. <scope>import</scope>
  104. </dependency>
  105. </dependencies>
  106. </dependencyManagement>
  107. <build>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-maven-plugin</artifactId>
  112. </plugin>
  113. <plugin>
  114. <artifactId>maven-compiler-plugin</artifactId>
  115. <configuration>
  116. <source>${java.version}</source>
  117. <target>${java.version}</target>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. <resources>
  122. <resource>
  123. <directory>${basedir}/src/main/resources</directory>
  124. <filtering>true</filtering>
  125. <includes>
  126. <include>**/application*.yml</include>
  127. <include>**/application*.properties</include>
  128. </includes>
  129. </resource>
  130. <resource>
  131. <directory>${basedir}/src/main/resources</directory>
  132. <excludes>
  133. <exclude>**/application*.yml</exclude>
  134. <exclude>**/application*.properties</exclude>
  135. </excludes>
  136. </resource>
  137. <resource>
  138. <directory>src/main/java</directory>
  139. <includes>
  140. <include>**/*.properties</include>
  141. <include>**/*.xml</include>
  142. </includes>
  143. <filtering>false</filtering>
  144. </resource>
  145. <resource>
  146. <directory>src/main/resources</directory>
  147. <targetPath>BOOT-INF/lib/</targetPath>
  148. <includes>
  149. <include>**/*.jar</include>
  150. </includes>
  151. </resource>
  152. <resource>
  153. <directory>lib</directory>
  154. <targetPath>BOOT-INF/lib/</targetPath>
  155. <includes>
  156. <include>*.jar</include>
  157. </includes>
  158. </resource>
  159. </resources>
  160. </build>
  161. <!--<repositories>-->
  162. <!--<repository>-->
  163. <!--<id>spring-milestones</id>-->
  164. <!--<name>Spring Milestones</name>-->
  165. <!--<url>https://repo.spring.io/milestone</url>-->
  166. <!--<snapshots>-->
  167. <!--<enabled>false</enabled>-->
  168. <!--</snapshots>-->
  169. <!--</repository>-->
  170. <!--&lt;!&ndash;<repository>&ndash;&gt;-->
  171. <!--&lt;!&ndash;<id>maven</id>&ndash;&gt;-->
  172. <!--&lt;!&ndash;<name>maven</name>&ndash;&gt;-->
  173. <!--&lt;!&ndash;<url>http://repo1.maven.org/maven2</url>&ndash;&gt;-->
  174. <!--&lt;!&ndash;<snapshots>&ndash;&gt;-->
  175. <!--&lt;!&ndash;<enabled>false</enabled>&ndash;&gt;-->
  176. <!--&lt;!&ndash;</snapshots>&ndash;&gt;-->
  177. <!--&lt;!&ndash;</repository>&ndash;&gt;-->
  178. <!--</repositories>-->
  179. </project>