Maven Repository - POM file for Build maven-repository-metadata 2.0 2.0

Summary

Maven Repository Metadata Model.

Maven Plugin Mapping.

Declaration

Here is the list of declaration for maven-repository-metadata. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.apache.maven</groupId>
   <artifactId>maven-repository-metadata</artifactId>
   <version>2.0</version>
</dependency>

If you think this Maven repository POM file listing for maven-repository-metadata is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Plugin

The following plugins are used in the maven-repository-metadata-2.0.jar

  1. modello-maven-plugin




Packages

The following packages are defined in the maven-repository-metadata-2.0.jar

org.apache.maven.artifact.repository.metadata
org.apache.maven.artifact.repository.metadata.io.xpp3

POM File Source

Here is the content of the POM file.

<project>
  <parent>
    <artifactId>maven</artifactId>
    <groupId>org.apache.maven</groupId>
    <version>2.0</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.apache.maven</groupId>
  <artifactId>maven-repository-metadata</artifactId>
  <name>Maven Repository Metadata Model</name>
  <version>2.0</version>
  <description>Maven Plugin Mapping</description>
  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.modello</groupId>
        <artifactId>modello-maven-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>xpp3-writer</goal>
              <goal>java</goal>
              <goal>xpp3-reader</goal>
              <goal>xsd</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <version>1.0.0</version>
          <model>src/main/mdo/metadata.mdo</model>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-utils</artifactId>
    </dependency>
  </dependencies>
  <distributionManagement>
    <status>deployed</status>
  </distributionManagement>
</project>