|
@@ -1,132 +1,132 @@
|
|
-<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
|
- <groupId>yunkai-import</groupId>
|
|
|
|
- <artifactId>yunkai-import</artifactId>
|
|
|
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
|
- <properties>
|
|
|
|
- <spring-boot.version>2.3.12.RELEASE</spring-boot.version>
|
|
|
|
- <mybatis-plus.version>3.4.3.3</mybatis-plus.version>
|
|
|
|
- <maven-compiler-version>3.8.1</maven-compiler-version>
|
|
|
|
- <maven-surefire-version>2.22.2</maven-surefire-version>
|
|
|
|
- <maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
- <maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
- <qmth-boot-version>1.0.4</qmth-boot-version>
|
|
|
|
- </properties>
|
|
|
|
- <dependencies>
|
|
|
|
- <!-- https://mvnrepository.com/artifact/com.ibm.icu/icu4j -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.ibm.icu</groupId>
|
|
|
|
- <artifactId>icu4j</artifactId>
|
|
|
|
- <version>65.1</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
- <artifactId>jackson-annotations</artifactId>
|
|
|
|
- <version>2.9.10</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
- <artifactId>jackson-core</artifactId>
|
|
|
|
- <version>2.9.10</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
- <artifactId>jackson-databind</artifactId>
|
|
|
|
- <version>2.9.10.3</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
- <artifactId>jackson-dataformat-avro</artifactId>
|
|
|
|
- <version>2.9.10</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.oracle</groupId>
|
|
|
|
- <artifactId>ojdbc6</artifactId>
|
|
|
|
- <version>11.2.0.3</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>mysql</groupId>
|
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
|
- <version>8.0.17</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.logging.log4j</groupId>
|
|
|
|
- <artifactId>log4j-1.2-api</artifactId>
|
|
|
|
- <version>2.3</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.poi</groupId>
|
|
|
|
- <artifactId>poi</artifactId>
|
|
|
|
- <version>3.17</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.poi</groupId>
|
|
|
|
- <artifactId>poi-ooxml</artifactId>
|
|
|
|
- <version>3.17</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.squareup.okhttp3</groupId>
|
|
|
|
- <artifactId>okhttp</artifactId>
|
|
|
|
- <version>3.11.0</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.google.guava</groupId>
|
|
|
|
- <artifactId>guava</artifactId>
|
|
|
|
- <version>23.0</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>commons-io</groupId>
|
|
|
|
- <artifactId>commons-io</artifactId>
|
|
|
|
- <version>2.5</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.google.code.gson</groupId>
|
|
|
|
- <artifactId>gson</artifactId>
|
|
|
|
- <version>2.8.5</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>net.freeutils</groupId>
|
|
|
|
- <artifactId>jcharset</artifactId>
|
|
|
|
- <version>2.0</version>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.httpcomponents</groupId>
|
|
|
|
- <artifactId>httpclient</artifactId>
|
|
|
|
- <version>4.5.10</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
- <version>2.1.13.RELEASE</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
|
- <artifactId>fastjson</artifactId>
|
|
|
|
- <version>1.2.76</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.commons</groupId>
|
|
|
|
- <artifactId>commons-text</artifactId>
|
|
|
|
- <version>1.9</version>
|
|
|
|
- </dependency>
|
|
|
|
- </dependencies>
|
|
|
|
- <build>
|
|
|
|
- <finalName>${project.artifactId}</finalName>
|
|
|
|
-
|
|
|
|
- <plugins>
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
- <configuration>
|
|
|
|
- <includeSystemScope>true</includeSystemScope>
|
|
|
|
- </configuration>
|
|
|
|
- </plugin>
|
|
|
|
- </plugins>
|
|
|
|
- </build>
|
|
|
|
-
|
|
|
|
|
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
+ <groupId>yunkai-import</groupId>
|
|
|
|
+ <artifactId>yunkai-import</artifactId>
|
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
|
+ <properties>
|
|
|
|
+ <spring-boot.version>2.3.12.RELEASE</spring-boot.version>
|
|
|
|
+ <mybatis-plus.version>3.4.3.3</mybatis-plus.version>
|
|
|
|
+ <maven-compiler-version>3.8.1</maven-compiler-version>
|
|
|
|
+ <maven-surefire-version>2.22.2</maven-surefire-version>
|
|
|
|
+ <maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
+ <maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
+ <qmth-boot-version>1.0.4</qmth-boot-version>
|
|
|
|
+ </properties>
|
|
|
|
+ <dependencies>
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.ibm.icu/icu4j -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.ibm.icu</groupId>
|
|
|
|
+ <artifactId>icu4j</artifactId>
|
|
|
|
+ <version>65.1</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
+ <artifactId>jackson-annotations</artifactId>
|
|
|
|
+ <version>2.9.10</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
+ <artifactId>jackson-core</artifactId>
|
|
|
|
+ <version>2.9.10</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
+ <artifactId>jackson-databind</artifactId>
|
|
|
|
+ <version>2.9.10.3</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
+ <artifactId>jackson-dataformat-avro</artifactId>
|
|
|
|
+ <version>2.9.10</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.oracle</groupId>
|
|
|
|
+ <artifactId>ojdbc6</artifactId>
|
|
|
|
+ <version>11.2.0.3</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
+ <version>8.0.17</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.logging.log4j</groupId>
|
|
|
|
+ <artifactId>log4j-1.2-api</artifactId>
|
|
|
|
+ <version>2.3</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
|
+ <artifactId>poi</artifactId>
|
|
|
|
+ <version>3.17</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
|
+ <version>3.17</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.squareup.okhttp3</groupId>
|
|
|
|
+ <artifactId>okhttp</artifactId>
|
|
|
|
+ <version>3.11.0</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
|
+ <version>23.0</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
|
+ <version>2.5</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.google.code.gson</groupId>
|
|
|
|
+ <artifactId>gson</artifactId>
|
|
|
|
+ <version>2.8.5</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>net.freeutils</groupId>
|
|
|
|
+ <artifactId>jcharset</artifactId>
|
|
|
|
+ <version>2.0</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
|
+ <artifactId>httpclient</artifactId>
|
|
|
|
+ <version>4.5.10</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
+ <version>2.1.13.RELEASE</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
|
+ <version>1.2.76</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-text</artifactId>
|
|
|
|
+ <version>1.9</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+ <build>
|
|
|
|
+ <finalName>${project.artifactId}</finalName>
|
|
|
|
+
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
+ <configuration>
|
|
|
|
+ <includeSystemScope>true</includeSystemScope>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+
|
|
</project>
|
|
</project>
|