pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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>dd-college-import</groupId>
  6. <artifactId>dd-college-import</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <properties>
  9. <java.version>1.8</java.version>
  10. <spring-boot.version>2.1.13.RELEASE</spring-boot.version>
  11. <druid.version>1.1.14</druid.version>
  12. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  13. <spring-cloud.version>Greenwich.SR3</spring-cloud.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <examcloud.version>2019-SNAPSHOT</examcloud.version>
  16. </properties>
  17. <dependencies>
  18. <!-- https://mvnrepository.com/artifact/com.ibm.icu/icu4j -->
  19. <dependency>
  20. <groupId>com.ibm.icu</groupId>
  21. <artifactId>icu4j</artifactId>
  22. <version>65.1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.fasterxml.jackson.core</groupId>
  26. <artifactId>jackson-annotations</artifactId>
  27. <version>2.9.10</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.fasterxml.jackson.core</groupId>
  31. <artifactId>jackson-core</artifactId>
  32. <version>2.9.10</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.fasterxml.jackson.core</groupId>
  36. <artifactId>jackson-databind</artifactId>
  37. <version>2.9.10.3</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.fasterxml.jackson.dataformat</groupId>
  41. <artifactId>jackson-dataformat-avro</artifactId>
  42. <version>2.9.10</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.oracle</groupId>
  46. <artifactId>ojdbc6</artifactId>
  47. <version>11.2.0.3</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>mysql</groupId>
  51. <artifactId>mysql-connector-java</artifactId>
  52. <version>8.0.17</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.logging.log4j</groupId>
  56. <artifactId>log4j-1.2-api</artifactId>
  57. <version>2.3</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.poi</groupId>
  61. <artifactId>poi</artifactId>
  62. <version>3.17</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.poi</groupId>
  66. <artifactId>poi-ooxml</artifactId>
  67. <version>3.17</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.squareup.okhttp3</groupId>
  71. <artifactId>okhttp</artifactId>
  72. <version>3.11.0</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.google.guava</groupId>
  76. <artifactId>guava</artifactId>
  77. <version>23.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>commons-io</groupId>
  81. <artifactId>commons-io</artifactId>
  82. <version>2.5</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.google.code.gson</groupId>
  86. <artifactId>gson</artifactId>
  87. <version>2.8.5</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>net.freeutils</groupId>
  91. <artifactId>jcharset</artifactId>
  92. <version>2.0</version>
  93. </dependency>
  94. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  95. <dependency>
  96. <groupId>org.apache.httpcomponents</groupId>
  97. <artifactId>httpclient</artifactId>
  98. <version>4.5.10</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-data-redis</artifactId>
  103. <version>2.1.13.RELEASE</version>
  104. </dependency>
  105. </dependencies>
  106. <repositories>
  107. <repository>
  108. <id>aliyun-repos</id>
  109. <url>https://maven.aliyun.com/repository/public</url>
  110. <releases>
  111. <enabled>true</enabled>
  112. </releases>
  113. <snapshots>
  114. <enabled>false</enabled>
  115. </snapshots>
  116. </repository>
  117. <repository>
  118. <id>atlassian</id>
  119. <name>Central Repository</name>
  120. <url>https://packages.atlassian.com/maven-3rdparty/</url>
  121. <layout>default</layout>
  122. <snapshots>
  123. <enabled>false</enabled>
  124. </snapshots>
  125. </repository>
  126. </repositories>
  127. <build>
  128. <plugins>
  129. <plugin>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-maven-plugin</artifactId>
  132. </plugin>
  133. <plugin>
  134. <groupId>org.apache.maven.plugins</groupId>
  135. <artifactId>maven-surefire-plugin</artifactId>
  136. <configuration>
  137. <testFailureIgnore>true</testFailureIgnore>
  138. <skipTests>true</skipTests>
  139. </configuration>
  140. </plugin>
  141. <plugin>
  142. <groupId>org.apache.maven.plugins</groupId>
  143. <artifactId>maven-compiler-plugin</artifactId>
  144. <configuration>
  145. <source>1.8</source>
  146. <target>1.8</target>
  147. <compilerArgument>-proc:none</compilerArgument>
  148. </configuration>
  149. </plugin>
  150. <plugin>
  151. <groupId>org.apache.maven.plugins</groupId>
  152. <artifactId>maven-source-plugin</artifactId>
  153. <configuration>
  154. <attach>true</attach>
  155. </configuration>
  156. <executions>
  157. <execution>
  158. <phase>compile</phase>
  159. <goals>
  160. <goal>jar</goal>
  161. </goals>
  162. </execution>
  163. </executions>
  164. </plugin>
  165. <plugin>
  166. <groupId>org.apache.maven.plugins</groupId>
  167. <artifactId>maven-jar-plugin</artifactId>
  168. <version>2.6</version>
  169. <configuration>
  170. <archive>
  171. <manifest>
  172. <addClasspath>true</addClasspath>
  173. <classpathPrefix>lib/</classpathPrefix>
  174. <mainClass>cn.com.qmth.export.Export</mainClass>
  175. </manifest>
  176. </archive>
  177. </configuration>
  178. </plugin>
  179. <plugin>
  180. <groupId>org.apache.maven.plugins</groupId>
  181. <artifactId>maven-dependency-plugin</artifactId>
  182. <version>2.10</version>
  183. <executions>
  184. <execution>
  185. <id>copy-dependencies</id>
  186. <phase>package</phase>
  187. <goals>
  188. <goal>copy-dependencies</goal>
  189. </goals>
  190. <configuration>
  191. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  192. </configuration>
  193. </execution>
  194. </executions>
  195. </plugin>
  196. </plugins>
  197. </build>
  198. </project>