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-beta-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.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The maven-model-2.0-beta-3 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.8.1 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1966 |
The following plugins are used in the maven-model-2.0-beta-3.jar
The following packages are defined in the maven-model-2.0-beta-3.jar
org.apache.maven.model org.apache.maven.model.io.xpp3
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <name>Maven Model</name> <version>2.0-beta-3</version> <description>Maven Model</description> <url>http://maven.apache.org/maven2/maven-model</url> <issueManagement> <system>jira</system> <url>http://jira.codehaus.org/browse/MNG</url> </issueManagement> <ciManagement> <system>continuum</system> <notifiers> <notifier> <configuration> <address>dev@maven.apache.org</address> </configuration> </notifier> </notifiers> </ciManagement> <mailingLists> <mailingList> <name>Maven User List</name> <subscribe>users-subscribe@maven.apache.org</subscribe> <unsubscribe>users-unsubscribe@maven.apache.org</unsubscribe> <post>users@maven.apache.org</post> <archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive> </mailingList> <mailingList> <name>Maven Developer List</name> <subscribe>dev-subscribe@maven.apache.org</subscribe> <unsubscribe>dev-unsubscribe@maven.apache.org</unsubscribe> <post>dev@maven.apache.org</post> <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive> </mailingList> <mailingList> <name>Apache Announce List</name> <subscribe>announce-subscribe@apache.org</subscribe> <unsubscribe>announce-unsubscribe@apache.org</unsubscribe> <post>announce@apache.org</post> <archive>mail-archives.apache.org/mod_mbox/www-announce/</archive> </mailingList> </mailingLists> <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:svn:http://svn.apache.org/repos/asf/maven/components/trunk/maven-model</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/components/trunk/maven-model</developerConnection> <url>http://svn.apache.org/viewcvs.cgi/maven/components/trunk/maven-model</url> </scm> <organization> <name>Apache Software Foundation</name> <url>http://www.apache.org/</url> </organization> <build> <sourceDirectory>src/main/java</sourceDirectory> <scriptSourceDirectory>src/main/scripts</scriptSourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <outputDirectory>target/classes</outputDirectory> <testOutputDirectory>target/test-classes</testOutputDirectory> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <directory>target</directory> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <tagBase>https://svn.apache.org/repos/asf/maven/components/tags</tagBase> </configuration> </plugin> <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>4.0.0</version> <model>maven.mdo</model> </configuration> </plugin> </plugins> </build> <repositories> <repository> <releases> <enabled>false</enabled> </releases> <id>snapshots</id> <name>Maven Central Development Repository</name> <url>http://snapshots.maven.codehaus.org/maven2</url> </repository> <repository> <snapshots> <enabled>false</enabled> </snapshots> <id>central</id> <name>Maven Repository Switchboard</name> <url>http://repo1.maven.org/maven2</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <releases> <enabled>false</enabled> </releases> <id>snapshots</id> <name>Maven Central Plugins Development Repository</name> <url>http://snapshots.maven.codehaus.org/maven2</url> </pluginRepository> <pluginRepository> <snapshots> <enabled>false</enabled> </snapshots> <id>central</id> <name>Maven Plugin Repository</name> <url>http://repo1.maven.org/maven2</url> </pluginRepository> </pluginRepositories> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.0.3</version> <scope>compile</scope> </dependency> </dependencies> <reporting> <outputDirectory>target/site</outputDirectory> </reporting> <distributionManagement> <repository> <id>repo1</id> <name>Maven Central Repository</name> <url>scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2</url> </repository> <snapshotRepository> <id>snapshots</id> <name>Maven Central Development Repository</name> <url>scp://repo1.maven.org/home/projects/maven/repository-staging/snapshots/maven2</url> </snapshotRepository> <site> <id>website</id> <url>scp://minotaur.apache.org/www/maven.apache.org/maven2/maven-model</url> </site> <status>deployed</status> </distributionManagement> </project>