pom.xml 9.3 KB

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