pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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>yunkai-import</groupId>
  6. <artifactId>yunkai-import</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <properties>
  9. <spring-boot.version>2.3.12.RELEASE</spring-boot.version>
  10. <mybatis-plus.version>3.4.3.3</mybatis-plus.version>
  11. <maven-compiler-version>3.8.1</maven-compiler-version>
  12. <maven-surefire-version>2.22.2</maven-surefire-version>
  13. <maven.compiler.source>1.8</maven.compiler.source>
  14. <maven.compiler.target>1.8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <qmth-boot-version>1.0.4</qmth-boot-version>
  18. </properties>
  19. <dependencies>
  20. <!-- https://mvnrepository.com/artifact/com.ibm.icu/icu4j -->
  21. <dependency>
  22. <groupId>com.ibm.icu</groupId>
  23. <artifactId>icu4j</artifactId>
  24. <version>65.1</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.fasterxml.jackson.core</groupId>
  28. <artifactId>jackson-annotations</artifactId>
  29. <version>2.9.10</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.fasterxml.jackson.core</groupId>
  33. <artifactId>jackson-core</artifactId>
  34. <version>2.9.10</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.fasterxml.jackson.core</groupId>
  38. <artifactId>jackson-databind</artifactId>
  39. <version>2.9.10.3</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.fasterxml.jackson.dataformat</groupId>
  43. <artifactId>jackson-dataformat-avro</artifactId>
  44. <version>2.9.10</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.oracle</groupId>
  48. <artifactId>ojdbc6</artifactId>
  49. <version>11.2.0.3</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>mysql</groupId>
  53. <artifactId>mysql-connector-java</artifactId>
  54. <version>8.0.17</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.logging.log4j</groupId>
  58. <artifactId>log4j-1.2-api</artifactId>
  59. <version>2.3</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.poi</groupId>
  63. <artifactId>poi</artifactId>
  64. <version>3.17</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.poi</groupId>
  68. <artifactId>poi-ooxml</artifactId>
  69. <version>3.17</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.squareup.okhttp3</groupId>
  73. <artifactId>okhttp</artifactId>
  74. <version>3.11.0</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.google.guava</groupId>
  78. <artifactId>guava</artifactId>
  79. <version>23.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>commons-io</groupId>
  83. <artifactId>commons-io</artifactId>
  84. <version>2.5</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.google.code.gson</groupId>
  88. <artifactId>gson</artifactId>
  89. <version>2.8.5</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>net.freeutils</groupId>
  93. <artifactId>jcharset</artifactId>
  94. <version>2.0</version>
  95. </dependency>
  96. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  97. <dependency>
  98. <groupId>org.apache.httpcomponents</groupId>
  99. <artifactId>httpclient</artifactId>
  100. <version>4.5.10</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-starter-data-redis</artifactId>
  105. <version>2.1.13.RELEASE</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.alibaba</groupId>
  109. <artifactId>fastjson</artifactId>
  110. <version>1.2.76</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.commons</groupId>
  114. <artifactId>commons-text</artifactId>
  115. <version>1.9</version>
  116. </dependency>
  117. </dependencies>
  118. <build>
  119. <finalName>${project.artifactId}</finalName>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-maven-plugin</artifactId>
  124. <configuration>
  125. <includeSystemScope>true</includeSystemScope>
  126. </configuration>
  127. </plugin>
  128. </plugins>
  129. </build>
  130. </project>