1 Star 1 Fork 1

EasyJ开源社区/easyj-maven-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 2.11 KB
一键复制 编辑 原始数据 按行查看 历史
王良 提交于 2023-03-02 11:48 . optimize the config of the plexus-utils
<?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>icu.easyj</groupId>
<artifactId>easyj-build</artifactId>
<version>1.1.5</version>
<relativePath/>
</parent>
<artifactId>easyj-tools-parent</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<name>${project.groupId} :: ${project.artifactId}</name>
<description>EasyJ社区提供的一些工具,如:maven插件、注解处理器等等。</description>
<modules>
<module>easyj-maven-plugin</module>
<module>easyj-maven-plugin-test</module>
</modules>
<properties>
<revision>1.1.6-SNAPSHOT</revision>
<junit.version>5.8.2</junit.version>
<jsr305.version>3.0.2</jsr305.version>
</properties>
<url>https://easyj.icu</url>
<scm>
<connection>scm:git@github.com:easyj-projects/easyj-maven-plugin.git</connection>
<developerConnection>scm:git@github.com:easyj-projects/easyj-maven-plugin.git</developerConnection>
<url>https://github.com/easyj-projects/easyj-maven-plugin</url>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/easyj-projects/easyj-maven-plugin/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>${jsr305.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- 使用插件:Source -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<attach>true</attach>
</configuration>
</plugin>
<!-- 使用插件:Easyj -->
<plugin>
<groupId>icu.easyj.maven.plugins</groupId>
<artifactId>easyj-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/easyj-projects/easyj-maven-plugin.git
git@gitee.com:easyj-projects/easyj-maven-plugin.git
easyj-projects
easyj-maven-plugin
easyj-maven-plugin
develop

搜索帮助