1 Star 1 Fork 0

future94/debug-tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 9.21 KB
一键复制 编辑 原始数据 按行查看 历史
future94 提交于 2024-12-18 13:05 . v3.1.1
<?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>io.github.future0923</groupId>
<artifactId>debug-tools</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<name>debug-tools</name>
<description>Debug tools.</description>
<url>https://github.com/future0923/debug-tools</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/future0923/debug-tools</url>
<connection>scm:git:https://github.com/future0923/debug-tools.git</connection>
<developerConnection>scm:git:https://github.com/future0923/debug-tools.git</developerConnection>
<tag>${project.version}</tag>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/future0923/debug-tools/issues</url>
</issueManagement>
<developers>
<developer>
<id>future0923</id>
<name>wei lai</name>
<url>https://github.com/future0923</url>
</developer>
</developers>
<properties>
<revision>3.1.1</revision>
<compiler.version>8</compiler.version>
<target.version>8</target.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<shade.package>io.github.future0923.debug.tools.dependencies</shade.package>
<lombok.version>1.18.24</lombok.version>
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
<maven-resource-plugin.version>3.3.1</maven-resource-plugin.version>
<flatten-maven-plugin.version>1.2.7</flatten-maven-plugin.version>
<arthas.version>3.7.2</arthas.version>
<spring-boot.version>2.7.4</spring-boot.version>
<hutool.version>5.8.29</hutool.version>
<pl-joegreen-lambda.version>1.7</pl-joegreen-lambda.version>
<xxl-job.version>2.4.1</xxl-job.version>
<apache-cli.version>1.8.0</apache-cli.version>
<maven-jdk-tools-wrapper.version>0.1</maven-jdk-tools-wrapper.version>
<groovy.version>4.0.22</groovy.version>
</properties>
<modules>
<module>debug-tools-attach</module>
<module>debug-tools-common</module>
<module>debug-tools-test</module>
<module>debug-tools-base</module>
<module>debug-tools-server</module>
<module>debug-tools-client</module>
<module>debug-tools-boot</module>
<module>debug-tools-core</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.taobao.arthas</groupId>
<artifactId>arthas-vmtool</artifactId>
<version>${arthas.version}</version>
</dependency>
<dependency>
<groupId>pl.joegreen</groupId>
<artifactId>lambda-from-string</artifactId>
<version>${pl-joegreen-lambda.version}</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-json</artifactId>
<version>${hutool.version}</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>${apache-cli.version}</version>
</dependency>
<dependency>
<groupId>com.github.olivergondza</groupId>
<artifactId>maven-jdk-tools-wrapper</artifactId>
<version>${maven-jdk-tools-wrapper.version}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.xuxueli</groupId>
<artifactId>xxl-job-core</artifactId>
<version>${xxl-job.version}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy</artifactId>
<version>${groovy.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven-shade-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resource-plugin.version}</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>${flatten-maven-plugin.version}</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten-clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${compiler.version}</source>
<target>${compiler.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/future94/debug-tools.git
git@gitee.com:future94/debug-tools.git
future94
debug-tools
debug-tools
main

搜索帮助