pom.xml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  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>jar</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>com.xintong.visuallnspection.inteface</groupId>
  25. <artifactId>visuallnspectioninteface</artifactId>
  26. <version>1.0</version>
  27. <exclusions> <exclusion>
  28. <artifactId>spring-boot-starter-parent</artifactId>
  29. <groupId>org.springframework.boot</groupId>
  30. </exclusion>
  31. <exclusion>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. <groupId>org.springframework.boot</groupId>
  34. </exclusion>
  35. <exclusion>
  36. <groupId>org.projectlombok</groupId>
  37. <artifactId>lombok</artifactId></exclusion></exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-security</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.mybatis.spring.boot</groupId>
  49. <artifactId>mybatis-spring-boot-starter</artifactId>
  50. <version>1.3.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-remote-shell</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-data-redis</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-devtools</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>io.jsonwebtoken</groupId>
  70. <artifactId>jjwt</artifactId>
  71. <version>0.7.0</version>
  72. </dependency>
  73. <!--<dependency> -->
  74. <!--<groupId>org.springframework.session</groupId> -->
  75. <!--<artifactId>spring-session-data-redis</artifactId> -->
  76. <!--</dependency> -->
  77. <!--<dependency> -->
  78. <!--<groupId>redis.clients</groupId> -->
  79. <!--<artifactId>jedis</artifactId> -->
  80. <!--<version>2.9.0</version> -->
  81. <!--</dependency> -->
  82. <!--<dependency> -->
  83. <!--<groupId>org.springframework.boot</groupId> -->
  84. <!--<artifactId>spring-boot-starter-data-jpa</artifactId> -->
  85. <!--</dependency> -->
  86. <!-- http://mvnrepository.com/artifact/org.thymeleaf.extras/thymeleaf-extras-springsecurity4 -->
  87. <dependency>
  88. <groupId>org.thymeleaf.extras</groupId>
  89. <artifactId>thymeleaf-extras-springsecurity4</artifactId>
  90. <version>2.1.2.RELEASE</version>
  91. </dependency>
  92. <!-- https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf-spring4 -->
  93. <!--<dependency> -->
  94. <!--<groupId>org.thymeleaf</groupId> -->
  95. <!--<artifactId>thymeleaf-spring4</artifactId> -->
  96. <!--<version>3.0.5.RELEASE</version> -->
  97. <!--</dependency> -->
  98. <!--<dependency> -->
  99. <!--<groupId>org.springframework.security</groupId> -->
  100. <!--<artifactId>spring-security-taglibs</artifactId> -->
  101. <!--<version>4.2.1.RELEASE</version> -->
  102. <!--</dependency> -->
  103. <dependency>
  104. <groupId>com.github.pagehelper</groupId>
  105. <artifactId>pagehelper</artifactId>
  106. <version>4.2.1</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.projectlombok</groupId>
  110. <artifactId>lombok</artifactId>
  111. <optional>true</optional>
  112. </dependency>
  113. <dependency>
  114. <groupId>mysql</groupId>
  115. <artifactId>mysql-connector-java</artifactId>
  116. <version>5.1.41</version><!--$NO-MVN-MAN-VER$-->
  117. </dependency>
  118. <dependency>
  119. <groupId>com.alibaba</groupId>
  120. <artifactId>druid</artifactId>
  121. <version>1.0.29</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.alibaba</groupId>
  125. <artifactId>fastjson</artifactId>
  126. <version>1.2.31</version>
  127. </dependency>
  128. <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->
  129. <dependency>
  130. <groupId>org.aspectj</groupId>
  131. <artifactId>aspectjrt</artifactId>
  132. <version>1.8.10</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.aspectj</groupId>
  136. <artifactId>aspectjweaver</artifactId>
  137. <version>1.8.10</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.poi</groupId>
  141. <artifactId>poi</artifactId>
  142. <version>3.12</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.jxls</groupId>
  146. <artifactId>jxls</artifactId>
  147. <version>2.3.0</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.jxls</groupId>
  151. <artifactId>jxls-poi</artifactId>
  152. <version>1.0.9</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.springframework.boot</groupId>
  156. <artifactId>spring-boot-starter-test</artifactId>
  157. <scope>test</scope>
  158. </dependency>
  159. <!--dubbo-->
  160. <dependency>
  161. <groupId>org.apache.zookeeper</groupId>
  162. <artifactId>zookeeper</artifactId>
  163. <version>3.4.11</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.github.sgroschupf</groupId>
  167. <artifactId>zkclient</artifactId>
  168. <version>0.1</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.alibaba.boot</groupId>
  172. <artifactId>dubbo-spring-boot-starter</artifactId>
  173. <version>0.1.0</version>
  174. </dependency>
  175. </dependencies>
  176. <dependencyManagement>
  177. <dependencies>
  178. <dependency>
  179. <groupId>org.springframework.cloud</groupId>
  180. <artifactId>spring-cloud-dependencies</artifactId>
  181. <version>Dalston.RELEASE</version>
  182. <type>pom</type>
  183. <scope>import</scope>
  184. </dependency>
  185. </dependencies>
  186. </dependencyManagement>
  187. <build>
  188. <plugins>
  189. <plugin>
  190. <groupId>org.springframework.boot</groupId>
  191. <artifactId>spring-boot-maven-plugin</artifactId>
  192. </plugin>
  193. <plugin>
  194. <artifactId>maven-compiler-plugin</artifactId>
  195. <configuration>
  196. <source>${java.version}</source>
  197. <target>${java.version}</target>
  198. </configuration>
  199. </plugin>
  200. </plugins>
  201. <resources>
  202. <resource>
  203. <directory>${basedir}/src/main/resources</directory>
  204. <filtering>true</filtering>
  205. <includes>
  206. <include>**/application*.yml</include>
  207. <include>**/application*.properties</include>
  208. </includes>
  209. </resource>
  210. <resource>
  211. <directory>${basedir}/src/main/resources</directory>
  212. <excludes>
  213. <exclude>**/application*.yml</exclude>
  214. <exclude>**/application*.properties</exclude>
  215. </excludes>
  216. </resource>
  217. <resource>
  218. <directory>src/main/java</directory>
  219. <includes>
  220. <include>**/*.properties</include>
  221. <include>**/*.xml</include>
  222. </includes>
  223. <filtering>false</filtering>
  224. </resource>
  225. <resource>
  226. <directory>src/main/resources</directory>
  227. <targetPath>BOOT-INF/lib/</targetPath>
  228. <includes>
  229. <include>**/*.jar</include>
  230. </includes>
  231. </resource>
  232. <resource>
  233. <directory>lib</directory>
  234. <targetPath>BOOT-INF/lib/</targetPath>
  235. <includes>
  236. <include>*.jar</include>
  237. </includes>
  238. </resource>
  239. </resources>
  240. </build>
  241. <repositories>
  242. <repository>
  243. <id>spring-releases</id>
  244. <name>Spring Releases</name>
  245. <url>https://repo.spring.io/libs-release</url>
  246. </repository>
  247. </repositories>
  248. <pluginRepositories>
  249. <pluginRepository>
  250. <id>spring-releases</id>
  251. <name>Spring Releases</name>
  252. <url>https://repo.spring.io/libs-release</url>
  253. </pluginRepository>
  254. </pluginRepositories>
  255. </project>