| 组织ID: |
org.codehaus.mojo |
| 项目ID: |
build-helper-maven-plugin |
| 版本: |
1.2 |
| 最后修改时间: |
2018-08-02 19:56:32 |
| 包类型: |
maven-plugin |
| 标题: |
Build Helper Maven Plugin |
| 描述: |
This plugin contains various small independent goals to assist with Maven build lifecycle |
| 相关URL: |
http://jira.codehaus.org/browse/MBUILDHELPER |
| 大小: |
10.22KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.2</version>
</dependency>
|
| Gradle引入代码: |
org.codehaus.mojo:build-helper-maven-plugin:1.2
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="ISO-8859-1"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>mojo</artifactId>
<groupId>org.codehaus.mojo</groupId>
<version>17</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>build-helper-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>Build Helper Maven Plugin</name>
<version>1.2</version>
<description>This plugin contains various small independent goals to assist with Maven build lifecycle</description>
<prerequisites>
<maven>2.0.2</maven>
</prerequisites>
<issueManagement>
<system>JIRA</system>
<url>http://jira.codehaus.org/browse/MBUILDHELPER</url>
</issueManagement>
<inceptionYear>2005</inceptionYear>
<scm>
<connection>scm:svn:http://svn.codehaus.org/mojo/tags/build-helper-maven-plugin-1.2</connection>
<developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/build-helper-maven-plugin-1.2</developerConnection>
<url>http://svn.codehaus.org/mojo/tags/build-helper-maven-plugin-1.2</url>
</scm>
<developers>
<developer>
<name>Dan Tran</name>
<email>dantran@gmail.com</email>
<roles>
<role>Developer</role>
</roles>
<timezone>5</timezone>
</developer>
</developers>
<licenses>
<license>
<name>The MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml</configLocation>
<headerLocation>header.txt</headerLocation>
</configuration>
</plugin>
</plugins>
</reporting>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/plugin.xml
org.codehaus.mojo.buildhelper.AddSourceMojo.class
org.codehaus.mojo.buildhelper.AddTestSourceMojo.class
org.codehaus.mojo.buildhelper.Artifact.class
org.codehaus.mojo.buildhelper.AttachArtifact.class
org.codehaus.mojo.buildhelper.RemoveLocalArtifactMojo.class
org.codehaus.mojo.buildhelper.ReserveListenerPortMojo.class
META-INF/maven/org.codehaus.mojo/build-helper-maven-plugin/pom.xml
META-INF/maven/org.codehaus.mojo/build-helper-maven-plugin/pom.properties
|
| 依赖Jar: |
maven-project-2.0.2.jar
/org.apache.maven/maven-project/2.0.2
查看maven-project所有版本文件
maven-plugin-api-2.0.jar
/org.apache.maven/maven-plugin-api/2.0
查看maven-plugin-api所有版本文件
maven-artifact-2.0.jar
/org.apache.maven/maven-artifact/2.0
查看maven-artifact所有版本文件
plexus-utils-1.1.jar
/org.codehaus.plexus/plexus-utils/1.1
查看plexus-utils所有版本文件
|