2023-09-26 15:19:13 +08:00
|
|
|
|
<?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>
|
2023-09-26 19:35:33 +08:00
|
|
|
|
<version>2.2.2.RELEASE</version>
|
2023-09-26 15:19:13 +08:00
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
<artifactId>jb-syn-cdata</artifactId>
|
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
<name>冀北数据同步项目</name>
|
|
|
|
|
|
<description>jb_syncdata</description>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
|
<repository>
|
|
|
|
|
|
<id>nexus-releases</id>
|
|
|
|
|
|
<name>Nexus Release Repository</name>
|
|
|
|
|
|
<url>http://192.168.1.13:8001/nexus/content/repositories/releases/</url>
|
|
|
|
|
|
</repository>
|
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
|
<id>nexus-snapshots</id>
|
|
|
|
|
|
<name>Nexus Snapshot Repository</name>
|
|
|
|
|
|
<url>http://192.168.1.13:8001/nexus/content/repositories/snapshots/</url>
|
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<!--docker仓库地址-->
|
|
|
|
|
|
<docker.server.url>192.168.1.13</docker.server.url>
|
|
|
|
|
|
<!--docker远程守护进程的url-->
|
|
|
|
|
|
<docker.url>http://${docker.server.url}:2375</docker.url>
|
|
|
|
|
|
<!--docker远程harbor,url-->
|
|
|
|
|
|
<docker.repostory>${docker.server.url}:8090</docker.repostory>
|
|
|
|
|
|
<!--docker远程项目仓库名-->
|
|
|
|
|
|
<docker.registry.name>njcn</docker.registry.name>
|
|
|
|
|
|
<docker.operate>install</docker.operate>
|
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
|
<commons-io.version>2.8.0</commons-io.version>
|
2023-10-11 10:37:57 +08:00
|
|
|
|
<hutool.version>5.8.11</hutool.version>
|
2023-10-10 17:42:16 +08:00
|
|
|
|
<influxdb-java.version>2.22</influxdb-java.version>
|
2023-09-26 15:19:13 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!--java简化开发工具-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--java工具包-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
|
<version>${hutool.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-json</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Actuator监控当前应用的健康,虚拟机等信息,通过前端以可视化的界面展示出来 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--避免idea后端配置类报红-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--测试依赖-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- commons通用包 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
|
<version>${commons-lang3.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
|
<version>${commons-io.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
|
<version>${commons-codec.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!--网络请求-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
|
<version>4.5.13</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
|
<version>1.2.75</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2023-10-08 09:56:37 +08:00
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>com.huawei.apigateway</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>java-sdk-core</artifactId>-->
|
|
|
|
|
|
<!-- <version>3.0.10</version>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>org.joda.time</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>joda-time</artifactId>-->
|
|
|
|
|
|
<!-- <version>2.9.9</version>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>com.njcn</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>common-db</artifactId>-->
|
|
|
|
|
|
<!-- <version>${project.version}</version>-->
|
|
|
|
|
|
<!-- <exclusions>-->
|
|
|
|
|
|
<!-- <exclusion>-->
|
|
|
|
|
|
<!-- <groupId>com.njcn</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>common-core</artifactId>-->
|
|
|
|
|
|
<!-- </exclusion>-->
|
|
|
|
|
|
<!-- <exclusion>-->
|
|
|
|
|
|
<!-- <groupId>com.njcn</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>common-web</artifactId>-->
|
|
|
|
|
|
<!-- </exclusion>-->
|
|
|
|
|
|
<!-- </exclusions>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
2023-10-10 20:04:11 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- mybatis-plus -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
|
<version>3.5.3.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.jeffreyning</groupId>
|
|
|
|
|
|
<artifactId>mybatisplus-plus</artifactId>
|
|
|
|
|
|
<version>1.7.3-RELEASE</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
|
|
<version>1.2.5</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--mysql驱动-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
|
<version>8.0.19</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-09-26 19:35:33 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
|
<version>3.2.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
|
|
|
|
<version>2.0.7</version>
|
|
|
|
|
|
</dependency>
|
2023-10-10 17:42:16 +08:00
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
<artifactId>influxdb-springboot-starter</artifactId>
|
2023-10-10 20:04:11 +08:00
|
|
|
|
<!-- <exclusions>-->
|
|
|
|
|
|
<!-- <exclusion>-->
|
|
|
|
|
|
<!-- <groupId>com.njcn</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>common-core</artifactId>-->
|
|
|
|
|
|
<!-- </exclusion>-->
|
|
|
|
|
|
<!-- </exclusions>-->
|
2023-10-10 17:42:16 +08:00
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
</dependency>
|
2023-10-11 10:37:57 +08:00
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
|
|
<version>4.4</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2023-09-26 19:35:33 +08:00
|
|
|
|
|
2023-09-26 15:19:13 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
2023-10-09 15:53:21 +08:00
|
|
|
|
<finalName>jb_syncdata</finalName>
|
2023-09-26 15:19:13 +08:00
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<excludes>
|
|
|
|
|
|
<exclude>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
</exclude>
|
|
|
|
|
|
</excludes>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
<resources>
|
|
|
|
|
|
<resource>
|
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
|
</resource>
|
|
|
|
|
|
<resource>
|
|
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
|
|
<includes>
|
|
|
|
|
|
<include>**/*.xml</include>
|
|
|
|
|
|
</includes>
|
|
|
|
|
|
</resource>
|
|
|
|
|
|
</resources>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|