You can download build-helper-maven-plugin-1.10.jar in this page.
The MIT License
build-helper-maven-plugin-1.10.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.codehaus.mojo/build-helper-maven-plugin/plugin-help.xml META-INF/maven/org.codehaus.mojo/build-helper-maven-plugin/pom.properties META-INF/maven/org.codehaus.mojo/build-helper-maven-plugin/pom.xml META-INF/maven/plugin.xml org.codehaus.mojo.buildhelper.AbstractAddResourceMojo.class org.codehaus.mojo.buildhelper.AbstractDefinePropertyMojo.class org.codehaus.mojo.buildhelper.AbstractRegexPropertyMojo.class org.codehaus.mojo.buildhelper.AddResourceMojo.class org.codehaus.mojo.buildhelper.AddSourceMojo.class org.codehaus.mojo.buildhelper.AddTestResourceMojo.class org.codehaus.mojo.buildhelper.AddTestSourceMojo.class org.codehaus.mojo.buildhelper.Artifact.class org.codehaus.mojo.buildhelper.AttachArtifactMojo.class org.codehaus.mojo.buildhelper.BeanshellPropertyMojo.class org.codehaus.mojo.buildhelper.CpuCountMojo.class org.codehaus.mojo.buildhelper.HelpMojo.class org.codehaus.mojo.buildhelper.LocalIpMojo.class org.codehaus.mojo.buildhelper.MavenVersionMojo.class org.codehaus.mojo.buildhelper.OsgiArtifactVersion.class org.codehaus.mojo.buildhelper.ParseVersionMojo.class org.codehaus.mojo.buildhelper.RegexPropertiesMojo.class org.codehaus.mojo.buildhelper.RegexPropertyMojo.class org.codehaus.mojo.buildhelper.RegexPropertySetting.class org.codehaus.mojo.buildhelper.ReleasedVersionMojo.class org.codehaus.mojo.buildhelper.RemoveLocalArtifactMojo.class org.codehaus.mojo.buildhelper.ReserveListenerPortMojo.class org.codehaus.mojo.buildhelper.TimestampPropertyMojo.class
build-helper-maven-plugin-1.10.pom file content.
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus.mojo</groupId> <artifactId>mojo-parent</artifactId> <version>38</version> </parent> <artifactId>build-helper-maven-plugin</artifactId> <version>1.10</version> <packaging>maven-plugin</packaging> <name>Build Helper Maven Plugin</name> <description>This plugin contains various small independent goals to assist with Maven build lifecycle</description> <inceptionYear>2005</inceptionYear> <licenses> <license> <name>The MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Dan Tran</name> <email>dantran@gmail.com</email> <roles> <role>Developer</role> </roles> <timezone>5</timezone> </developer> <developer> <id>rfscholte</id> <name>Robert Scholte</name> <roles> <role>Developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <prerequisites> <maven>${mavenVersion}</maven> </prerequisites> <scm> <connection>scm:git:https://github.com/mojohaus/build-helper-maven-plugin.git</connection> <developerConnection>scm:git:ssh://git@github.com/mojohaus/build-helper-maven-plugin.git</developerConnection> <url>https://github.com/mojohaus/build-helper-maven-plugin</url> <tag>build-helper-maven-plugin-1.10</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/mojohaus/build-helper-maven-plugin/issues/</url> </issueManagement> <ciManagement> <system>Travis-CI</system> <url>https://travis-ci.org/mojohaus/build-helper-maven-plugin</url> </ciManagement> <properties> <mavenVersion>2.2.1</mavenVersion> <scmpublish.content>${project.build.directory}/staging/build-helper-maven-plugin</scmpublish.content> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.0.22</version> </dependency> <dependency> <groupId>org.beanshell</groupId> <artifactId>bsh</artifactId> <version>2.0b4</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <!-- without this maven-2.2.1 will not create the decriptor --> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <!-- version inherited --> <configuration> <configLocation>config/maven_checks.xml</configLocation> <headerLocation>header.txt</headerLocation> </configuration> </plugin> </plugins> </reporting> <profiles> <profile> <id>run-its</id> <activation> <property> <name>skipTests</name> <value>!true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <configuration> <debug>true</debug> <postBuildHookScript>verify</postBuildHookScript> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <settingsFile>src/it/settings.xml</settingsFile> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> </configuration> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.10</version> </dependency>
If you think the following build-helper-maven-plugin-1.10.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download build-helper-maven-plugin-1.10.jar file