Maven Repository - POM file for Build maven-model 2.0.5 2.0.5

Summary

Maven Model.

Declaration

Here is the list of declaration for maven-model. 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-model</artifactId>
   <version>2.0.5</version>
</dependency>

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

Depended by

The following table lists the most popular artifacts which are depending on maven-model-2.0.5. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Buildmaven-project 2.0.5
This library is used to not only read Maven project object model files, but to assemble inheritence and to retrieve remote models as required.
7




Plugin

The following plugins are used in the maven-model-2.0.5.jar

  1. modello-maven-plugin

Packages

The following packages are defined in the maven-model-2.0.5.jar

org.apache.maven.model
org.apache.maven.model.io.xpp3

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?><project>
  <parent>
    <artifactId>maven</artifactId>
    <groupId>org.apache.maven</groupId>
    <version>2.0.5</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>maven-model</artifactId>
  <name>Maven Model</name>
  <version>2.0.5</version>
  <description>Maven Model</description>
  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.modello</groupId>
        <artifactId>modello-maven-plugin</artifactId>
        <version>1.0-alpha-8</version>
        <executions>
          <execution>
            <goals>
              <goal>xpp3-writer</goal>
              <goal>java</goal>
              <goal>xpp3-reader</goal>
              <goal>xsd</goal>
            </goals>
          </execution>
          <execution>
            <id>site-docs</id>
            <phase>pre-site</phase>
            <goals>
              <goal>xdoc</goal>
              <goal>xsd</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <version>4.0.0</version>
          <model>src/main/mdo/maven.mdo</model>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>all-models</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
            <version>1.0-alpha-8</version>
            <executions>
              <execution>
                <id>v3</id>
                <goals>
                  <goal>xpp3-writer</goal>
                  <goal>java</goal>
                  <goal>xpp3-reader</goal>
                  <goal>xsd</goal>
                </goals>
                <configuration>
                  <version>3.0.0</version>
                  <packageWithVersion>true</packageWithVersion>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <artifactId>maven-jar-plugin</artifactId>
            <executions>
              <execution>
                <phase>package</phase>
                <goals>
                  <goal>jar</goal>
                </goals>
                <configuration>
                  <classifier>all</classifier>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
  <dependencies>
    <dependency>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-utils</artifactId>
    </dependency>
  </dependencies>
  <distributionManagement>
    <status>deployed</status>
  </distributionManagement>
</project>