93 lines
2.8 KiB
XML
93 lines
2.8 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>data-migration</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<artifactId>filesync</artifactId>
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>njcn-common</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>mybatis-plus</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>spingboot2.3.12</artifactId>
|
|
<version>2.3.12</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot</artifactId>
|
|
</dependency>
|
|
|
|
<!-- SSH/SFTP 客户端 -->
|
|
<dependency>
|
|
<groupId>com.jcraft</groupId>
|
|
<artifactId>jsch</artifactId>
|
|
<version>0.1.55</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>mybatis-plus</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
<build>
|
|
<finalName>file-sync</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<includes>
|
|
<include>**/*</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
</project>
|