Maven Model.
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-alpha-3</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.
The following plugins are used in the maven-model-2.0-alpha-3.jar
The following packages are defined in the maven-model-2.0-alpha-3.jar
org.apache.maven.model org.apache.maven.model.io.xpp3
Here is the content of the POM file.
<project> <parent> <artifactId>maven</artifactId> <groupId>org.apache.maven</groupId> <version>2.0-alpha-3</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <name>Maven Model</name> <version>2.0-alpha-3</version> <description>Maven Model</description> <build> <plugins> <plugin> <groupId>org.codehaus.modello</groupId> <artifactId>modello-maven-plugin</artifactId> <version>1.0-alpha-3</version> <executions> <execution> <goals> <goal>xpp3-writer</goal> <goal>java</goal> <goal>xpp3-reader</goal> </goals> </execution> </executions> <configuration> <version>4.0.0</version> <model>maven.mdo</model> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.0-alpha-3</version> </dependency> </dependencies> </project>