Maven Project Builder.
This library is used to not only read Maven project object model files, but to assemble inheritence and to retrieve remote models as required..
Here is the list of declaration for maven-project. 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-project</artifactId> <version>2.0</version> </dependency>
If you think this Maven repository POM file listing for maven-project is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The maven-project-2.0 has 5 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 |
---|---|---|
Build | maven-model 2.0 Maven Model | 20 |
The following table lists the most popular artifacts which are depending on maven-project-2.0. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Build | maven-plugin-testing-harness 1.2 The Maven Plugin Testing Harness provides mechanisms to manage tests on Mojo. | 18 |
XML | docbkx-maven-base 2.0.14 A number of base classes, providing the basic behaviour of objects / plugins transforming DocBook XML sources into some other format. | 7 |
Web Framework | maven-doxia-tools 1.0.1 A collection of tools to help the integration of Doxia in Maven plugins. | 9 |
The following packages are defined in the maven-project-2.0.jar
org.apache.maven.profiles org.apache.maven.profiles.activation org.apache.maven.project org.apache.maven.project.artifact org.apache.maven.project.inheritance org.apache.maven.project.injection org.apache.maven.project.interpolation org.apache.maven.project.overlay org.apache.maven.project.path org.apache.maven.project.validation
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> <artifactId>maven-project</artifactId> <name>Maven Project Builder</name> <version>2.0</version> <description>This library is used to not only read Maven project object model files, but to assemble inheritence and to retrieve remote models as required.</description> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact-test</artifactId> <version>2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-profile</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact-manager</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> </dependency> </dependencies> <distributionManagement> <status>deployed</status> </distributionManagement> </project>