|
|
<?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>
|
|
|
|
|
|
<groupId>xyz.wbsite</groupId>
|
|
|
<artifactId>deployee-maven-plugin</artifactId>
|
|
|
<version>2.0.4-SNAPSHOT</version>
|
|
|
<packaging>maven-plugin</packaging>
|
|
|
<description>deployee</description>
|
|
|
|
|
|
<properties>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
<java.version>1.8</java.version>
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
</properties>
|
|
|
|
|
|
<repositories>
|
|
|
<!-- 将中央仓库地址指向阿里云聚合仓库,提高下载速度 -->
|
|
|
<repository>
|
|
|
<id>aliyun</id>
|
|
|
<name>Aliyun Repository</name>
|
|
|
<layout>default</layout>
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
</repository>
|
|
|
</repositories>
|
|
|
<pluginRepositories>
|
|
|
<!-- 将插件的仓库指向阿里云聚合仓库,解决低版本maven下载插件异常或提高下载速度 -->
|
|
|
<pluginRepository>
|
|
|
<id>aliyun</id>
|
|
|
<name>Aliyun Repository</name>
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
<layout>default</layout>
|
|
|
</pluginRepository>
|
|
|
</pluginRepositories>
|
|
|
|
|
|
<!-- 部署配置 -->
|
|
|
<distributionManagement>
|
|
|
<snapshotRepository>
|
|
|
<id>repository</id>
|
|
|
<name>snapshots</name>
|
|
|
<url>http://*.*.*.*:8081/repository/maven-snapshots/</url>
|
|
|
</snapshotRepository>
|
|
|
<repository>
|
|
|
<id>repository</id>
|
|
|
<name>releases</name>
|
|
|
<url>http://*.*.*.*:8081/repository/maven-releases/</url>
|
|
|
</repository>
|
|
|
</distributionManagement>
|
|
|
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
|
<version>3.6.3</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
|
<artifactId>maven-plugin-annotations</artifactId>
|
|
|
<version>3.5.2</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 执行ssh命令插件 -->
|
|
|
<dependency>
|
|
|
<groupId>ch.ethz.ganymed</groupId>
|
|
|
<artifactId>ganymed-ssh2</artifactId>
|
|
|
<version>262</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.jcraft</groupId>
|
|
|
<artifactId>jsch</artifactId>
|
|
|
<version>0.1.54</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 糊涂工具核心,包含常用工具类,避免重复造轮子 -->
|
|
|
<!-- 部分工具依赖第三方包 -->
|
|
|
<dependency>
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
<version>5.8.0.M3</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
<!-- 项目名称 -->
|
|
|
<finalName>${artifactId}</finalName>
|
|
|
<!-- 默认的主代码目录 -->
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
|
<resources>
|
|
|
<resource>
|
|
|
<directory>src/main/resources</directory>
|
|
|
</resource>
|
|
|
</resources>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
|
<version>3.6.0</version>
|
|
|
<executions>
|
|
|
<execution>
|
|
|
<id>default-addPluginArtifactMetadata</id>
|
|
|
<phase>package</phase>
|
|
|
<goals>
|
|
|
<goal>addPluginArtifactMetadata</goal>
|
|
|
</goals>
|
|
|
</execution>
|
|
|
<execution>
|
|
|
<id>default-descriptor</id>
|
|
|
<phase>process-classes</phase>
|
|
|
<goals>
|
|
|
<goal>descriptor</goal>
|
|
|
</goals>
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<source>1.8</source>
|
|
|
<target>1.8</target>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
</project>
|