resolve-pom-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sap.prd.mobile.ios.maven.plugins</groupId> <artifactId>resolve-pom-maven-plugin</artifactId> <version>1.0</version> </dependency>
<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>com.sap.prd.mobile.ios.maven.plugins</groupId> <artifactId>resolve-pom-maven-plugin</artifactId> <version>1.0</version> <packaging>maven-plugin</packaging> <name>resolve-pom-maven-plugin</name> <description> This Maven plugin creates in the initialization phase a copy of the original pom where all properties get resolved by its actual values. This substituted POM is used in the further processing. Especially it will be used when an upload to the local or remote repository takes place. </description> <inceptionYear>2012</inceptionYear> <organization> <name>SAP AG</name> </organization> <url>https://github.com/sap-production/resolve-pom-maven-plugin</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/sap-production/resolve-pom-maven-plugin.git</connection> <developerConnection>scm:git:https://github.com/sap-production/resolve-pom-maven-plugin.git</developerConnection> <url>https://github.com/sap-production/resolve-pom-maven-plugin</url> </scm> <mailingLists> <mailingList> <name>User List</name> <subscribe>maven4ios-request@freelists.org?subject=subscribe</subscribe> <unsubscribe>maven4ios-request@freelists.org?subject=unsubscribe</unsubscribe> <post>maven4ios@freelists.org</post> <archive>http://www.freelists.org/archive/maven4ios/</archive> </mailingList> </mailingLists> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/sap-production/resolve-pom-maven-plugin/issues</url> </issueManagement> <developers> <developer> <name>Joern Gebhardt</name> <email>joern.gebhardt@sap.com</email> </developer> <developer> <name>Alexander Link</name> <email>alexander.link@sap.com</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.0.3</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.0.3</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.0.3</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-filtering</artifactId> <version>1.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.1</version> <configuration> <goalPrefix>resolve-pom</goalPrefix> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>