pom.xml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.2.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.lantone.qc.kernel</groupId>
  12. <artifactId>kernel</artifactId>
  13. <version>0.0.1</version>
  14. <name>kernel</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. <swagger2.version>2.7.0</swagger2.version>
  21. <slf4j.version>1.7.2</slf4j.version>
  22. <commons-lang3.version>3.1</commons-lang3.version>
  23. <commons-io.version>2.4</commons-io.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.diagbot</groupId>
  28. <artifactId>common</artifactId>
  29. <version>0.0.1.1-SNAPSHOT</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.lantone.qc</groupId>
  33. <artifactId>security</artifactId>
  34. <version>1.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.lantone.qc</groupId>
  38. <artifactId>nlp</artifactId>
  39. <version>1.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.lantone.qc</groupId>
  43. <artifactId>trans</artifactId>
  44. <version>1.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-web</artifactId>
  49. </dependency>
  50. <!-- LOGGING begin -->
  51. <!-- 代码直接调用commons-logging会被桥接到slf4j -->
  52. <dependency>
  53. <groupId>org.slf4j</groupId>
  54. <artifactId>jcl-over-slf4j</artifactId>
  55. <version>${slf4j.version}</version>
  56. </dependency>
  57. <!-- 代码直接调用java.util.logging会被桥接到slf4j -->
  58. <dependency>
  59. <groupId>org.slf4j</groupId>
  60. <artifactId>jul-to-slf4j</artifactId>
  61. <version>${slf4j.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.springfox</groupId>
  65. <artifactId>springfox-swagger2</artifactId>
  66. <version>${swagger2.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>io.springfox</groupId>
  70. <artifactId>springfox-swagger-ui</artifactId>
  71. <version>${swagger2.version}</version>
  72. </dependency>
  73. <!-- 开启feign-->
  74. <dependency>
  75. <groupId>org.springframework.cloud</groupId>
  76. <artifactId>spring-cloud-starter-openfeign</artifactId>
  77. <version>2.1.0.RELEASE</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>net.sourceforge.jexcelapi</groupId>
  81. <artifactId>jxl</artifactId>
  82. <version>2.6.10</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.oracle</groupId>
  86. <artifactId>ojdbc6</artifactId>
  87. <version>11.2.0.3</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>mysql</groupId>
  91. <artifactId>mysql-connector-java</artifactId>
  92. <version>8.0.33</version>
  93. </dependency>
  94. <!--redis设置-->
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-data-redis</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.commons</groupId>
  101. <artifactId>commons-pool2</artifactId>
  102. </dependency>
  103. </dependencies>
  104. <!-- 私有仓库 -->
  105. <repositories>
  106. <repository>
  107. <id>nexus-releases</id>
  108. <name>Nexus Release Repository</name>
  109. <url>http://192.168.2.236:8081/repository/maven-releases/</url>
  110. </repository>
  111. </repositories>
  112. <!-- 私有仓库 -->
  113. <pluginRepositories>
  114. <pluginRepository>
  115. <id>nexus-releases</id>
  116. <name>Nexus Release Repository</name>
  117. <url>http://192.168.2.236:8081/repository/maven-releases/</url>
  118. <releases>
  119. <enabled>true</enabled>
  120. </releases>
  121. <snapshots>
  122. <enabled>true</enabled>
  123. </snapshots>
  124. </pluginRepository>
  125. </pluginRepositories>
  126. <distributionManagement>
  127. <repository>
  128. <id>nexus-releases</id>
  129. <name>Nexus Release Repository</name>
  130. <url>http://192.168.2.236:8081/repository/maven-releases/</url>
  131. </repository>
  132. <snapshotRepository>
  133. <id>nexus-snapshots</id>
  134. <name>Nexus Snapshot Repository</name>
  135. <url>http://192.168.2.236:8081/repository/maven-snapshots/</url>
  136. </snapshotRepository>
  137. </distributionManagement>
  138. <build>
  139. <plugins>
  140. <plugin>
  141. <groupId>org.springframework.boot</groupId>
  142. <artifactId>spring-boot-maven-plugin</artifactId>
  143. </plugin>
  144. </plugins>
  145. <resources>
  146. <resource>
  147. <directory>src/main/java</directory>
  148. <includes>
  149. <include>**/*.properties</include>
  150. <include>**/*.xml</include>
  151. <include>**/*.json</include>
  152. </includes>
  153. <filtering>false</filtering>
  154. </resource>
  155. <resource>
  156. <directory>src/main/resources</directory>
  157. <includes>
  158. <include>**/*.*</include>
  159. </includes>
  160. </resource>
  161. </resources>
  162. <finalName>qc-web</finalName>
  163. </build>
  164. </project>