2017-09-14 17:23:46 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-03-09 10:23:17 +08:00
|
|
|
<!--
|
|
|
|
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
Copyright (c) 2019 Code Technology Studio
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
-->
|
2017-09-14 17:23:46 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2022-02-24 17:07:52 +08:00
|
|
|
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>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
|
|
<module>modules/agent</module>
|
|
|
|
<module>modules/server</module>
|
|
|
|
<module>modules/common</module>
|
2022-02-26 22:26:52 +08:00
|
|
|
<module>modules/sub-plugin</module>
|
2022-02-22 15:39:57 +08:00
|
|
|
</modules>
|
2022-02-24 17:07:52 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2022-05-12 16:21:21 +08:00
|
|
|
<version>2.6.7</version>
|
2022-02-24 17:07:52 +08:00
|
|
|
</parent>
|
|
|
|
<groupId>io.jpom</groupId>
|
|
|
|
<artifactId>jpom-parent</artifactId>
|
2022-03-03 22:47:53 +08:00
|
|
|
<name>Jpom (Java Project Online Manage)</name>
|
2022-02-24 17:07:52 +08:00
|
|
|
<description>
|
|
|
|
简而轻的低侵入式在线构建、自动部署、日常运维、项目监控软件
|
|
|
|
</description>
|
|
|
|
<inceptionYear>2017</inceptionYear>
|
2022-05-27 10:50:32 +08:00
|
|
|
<version>2.8.22</version>
|
2022-02-24 17:07:52 +08:00
|
|
|
<url>https://gitee.com/dromara/Jpom</url>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<!--当前程序兼容 jpom 最新版本号-->
|
|
|
|
<jpom-min-version>1.0.0</jpom-min-version>
|
|
|
|
<spring-boot.version>2.6.3</spring-boot.version>
|
2021-07-09 12:11:54 +08:00
|
|
|
|
2022-04-16 23:59:44 +08:00
|
|
|
<common-boot.version>2.2.4</common-boot.version>
|
2022-02-24 17:07:52 +08:00
|
|
|
<h2.version>1.4.200</h2.version>
|
|
|
|
<!-- 跳过测试 -->
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
2022-02-26 23:21:14 +08:00
|
|
|
<!-- <maven.javadoc.skip>true</maven.javadoc.skip>-->
|
2022-05-12 16:21:21 +08:00
|
|
|
<hutool-all.version>5.7.22</hutool-all.version>
|
2022-02-24 17:07:52 +08:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-09-04 15:01:17 +08:00
|
|
|
|
2022-02-24 17:07:52 +08:00
|
|
|
<!-- 性能测试 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.databene</groupId>
|
|
|
|
<artifactId>contiperf</artifactId>
|
|
|
|
<version>2.3.4</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-01-24 22:42:45 +08:00
|
|
|
|
2022-02-24 17:07:52 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.22</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.0</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.mycila</groupId>
|
|
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
|
|
<version>4.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>remove</goal>
|
|
|
|
<goal>format</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<quiet>true</quiet>
|
|
|
|
<!--HEADER文件-->
|
|
|
|
<header>LICENSE</header>
|
|
|
|
<includes>
|
|
|
|
<!--取消默认排除-->
|
|
|
|
<include>**/node/**</include>
|
|
|
|
</includes>
|
|
|
|
<!--排除文件-->
|
|
|
|
<excludes>
|
2022-03-09 10:34:15 +08:00
|
|
|
<!-- https://github.com/mathieucarbou/license-maven-plugin/blob/master/license-maven-plugin/src/main/java/com/mycila/maven/plugin/license/Default.java-->
|
2022-03-09 22:19:22 +08:00
|
|
|
|
2022-02-24 17:07:52 +08:00
|
|
|
<exclude>docs/**</exclude>
|
|
|
|
<exclude>web-vue/**</exclude>
|
|
|
|
<exclude>**/*.yml</exclude>
|
|
|
|
<exclude>**/*.md</exclude>
|
2022-03-08 22:54:42 +08:00
|
|
|
<exclude>**/*.txt</exclude>
|
2022-02-24 17:07:52 +08:00
|
|
|
</excludes>
|
|
|
|
<!--严格检查-->
|
|
|
|
<strictCheck>true</strictCheck>
|
|
|
|
<mapping>
|
|
|
|
<java>SLASHSTAR_STYLE</java>
|
|
|
|
</mapping>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-08-25 19:11:12 +08:00
|
|
|
|
2022-02-24 17:07:52 +08:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>install-plugin-profile</id>
|
|
|
|
</profile>
|
2022-03-03 11:58:28 +08:00
|
|
|
<profile>
|
|
|
|
<id>cobertura</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
<configuration>
|
|
|
|
<formats>
|
|
|
|
<format>html</format>
|
|
|
|
<format>xml</format>
|
|
|
|
</formats>
|
|
|
|
<check/>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2022-02-24 17:07:52 +08:00
|
|
|
<profile>
|
2022-03-03 22:47:53 +08:00
|
|
|
<id>release</id>
|
2022-02-24 17:07:52 +08:00
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>maven-repo</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>maven-repo</id>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2022-03-03 22:47:53 +08:00
|
|
|
<!-- Javadoc -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadoc</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<!-- <additionalparam>-Xdoclint:none</additionalparam>-->
|
|
|
|
<additionalOptions>-Xdoclint:none</additionalOptions>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<tags>
|
|
|
|
<tag>
|
|
|
|
<name>date</name>
|
|
|
|
<placement>a</placement>
|
|
|
|
<head>创建时间</head>
|
|
|
|
</tag>
|
|
|
|
</tags>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<!-- source插件,打包源码 -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-02-24 17:07:52 +08:00
|
|
|
<!-- GPG -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>verify-gpg</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-02-26 23:21:14 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<version>1.6.8</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<serverId>sonatype-nexus-staging</serverId>
|
|
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-02-24 17:07:52 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2021-09-25 20:09:58 +08:00
|
|
|
|
2022-02-24 17:07:52 +08:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT License</name>
|
|
|
|
<url>https://opensource.org/licenses/MIT</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2019-07-23 16:58:43 +08:00
|
|
|
</project>
|