261 lines
8.6 KiB
XML
261 lines
8.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.5.12</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
<groupId>com.celnet</groupId>
|
|
<artifactId>data-dump</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>data-dump</name>
|
|
<description>sf数据迁移</description>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<force-wsc.version>51.2.0</force-wsc.version>
|
|
<fastjson.version>2.0.14.graal</fastjson.version>
|
|
<mbp.version>3.5.1</mbp.version>
|
|
<mbpgen.version>3.5.1</mbpgen.version>
|
|
<velocity.version>2.0</velocity.version>
|
|
<lombok.version>1.18.24</lombok.version>
|
|
<mysql.jdbc.version>8.0.30</mysql.jdbc.version>
|
|
<xxlJob.version>2.1.2</xxlJob.version>
|
|
<druid.version>1.2.15</druid.version>
|
|
<guava.version>31.1-jre</guava.version>
|
|
<common-lang3.version>3.12.0</common-lang3.version>
|
|
<easyexcel.version>3.1.3</easyexcel.version>
|
|
<oss.version>3.16.0</oss.version>
|
|
<httpclientutil.version>1.0.4</httpclientutil.version>
|
|
<swagger.version>3.0.0</swagger.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
</dependency>
|
|
<!-- json -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>${fastjson.version}</version>
|
|
</dependency>
|
|
<!-- json -->
|
|
|
|
<!-- mybatis plus -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>${mbp.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-generator</artifactId>
|
|
<version>${mbp.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- mybatis plus -->
|
|
|
|
<!-- 模板引擎 velocity -->
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity-engine-core</artifactId>
|
|
<version>${velocity.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- 模板引擎 velocity -->
|
|
|
|
<!-- mysql jdbc -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>${mysql.jdbc.version}</version>
|
|
</dependency>
|
|
<!-- mysql jdbc -->
|
|
|
|
<!-- druid -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.alibaba</groupId>-->
|
|
<!-- <artifactId>druid-spring-boot-starter</artifactId>-->
|
|
<!-- <version>${druid.version}</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- <!– druid –>-->
|
|
|
|
<!-- lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
<!-- lombok -->
|
|
|
|
<!-- xxl job -->
|
|
<dependency>
|
|
<groupId>com.xuxueli</groupId>
|
|
<artifactId>xxl-job-core</artifactId>
|
|
<version>${xxlJob.version}</version>
|
|
</dependency>
|
|
<!-- xxl job -->
|
|
|
|
<!-- salesforce -->
|
|
<dependency>
|
|
<groupId>com.force.api</groupId>
|
|
<artifactId>force-wsc</artifactId>
|
|
<version>${force-wsc.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>salesforce</groupId>
|
|
<artifactId>salesforce-partner</artifactId>
|
|
<version>0.0.1</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/src/main/resources/lib/partner.jar</systemPath>
|
|
</dependency>
|
|
<!-- salesforce -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3.version}</version>
|
|
</dependency>
|
|
|
|
<!-- guava -->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>${guava.version}</version>
|
|
</dependency>
|
|
<!-- guava -->
|
|
|
|
<!-- email -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
</dependency>
|
|
<!-- email -->
|
|
|
|
<!-- easyexcel -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>easyexcel</artifactId>
|
|
<version>${easyexcel.version}</version>
|
|
</dependency>
|
|
<!-- easyexcel -->
|
|
|
|
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.6</version>
|
|
</dependency>
|
|
<!-- 阿里云oss SDK -->
|
|
<dependency>
|
|
<groupId>com.aliyun.oss</groupId>
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
<version>${oss.version}</version>
|
|
</dependency>
|
|
<!-- 阿里云oss SDK -->
|
|
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.8.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>3.10.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-boot-starter</artifactId>
|
|
<version>${swagger.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpcore</artifactId>
|
|
<version>4.4.9</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.13</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpmime</artifactId>
|
|
<version>4.5.12</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
</resource>
|
|
<resource>
|
|
<directory>${project.basedir}/src/main/resources/lib</directory>
|
|
<targetPath>BOOT-INF/lib/</targetPath>
|
|
<includes>
|
|
<include>**/*.jar</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>dev</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<properties>
|
|
<profilesActive>dev</profilesActive>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>test</id>
|
|
<properties>
|
|
<profilesActive>test</profilesActive>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>prod</id>
|
|
<properties>
|
|
<profilesActive>prod</profilesActive>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|