Maven Plugin Testing Mechanism.
The Maven Plugin Testing Harness provides mechanisms to manage tests on Mojo..
Here is the list of declaration for maven-plugin-testing-harness. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for maven-plugin-testing-harness is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The maven-plugin-testing-harness-1.2 has 8 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-project 2.0 This library is used to not only read Maven project object model files, but to assemble inheritence and to retrieve remote models as required. | 53 |
Build | maven-model 2.0 Maven Model | 20 |
The following table lists the most popular artifacts which are depending on maven-plugin-testing-harness-1.2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Build | maven-install-plugin 2.3 Copies the project artifacts to the user's local repository. | 27 |
Build | maven-project-info-reports-plugin 2.4 The Maven Project Info Reports Plugin is a plugin that generates standard reports for the specified project. | 12 |
Build | maven-deploy-plugin 2.7 Uploads the project artifacts to the internal remote repository. | 15 |
Build | maven-jar-plugin 2.4 Builds a Java Archive (JAR) file from the compiled project classes and resources. | 5 |
Build | maven-dependency-plugin 2.3 Provides utility goals to work with dependencies like copying, unpacking, analyzing, resolving and many more. | 14 |
The following plugins are used in the maven-plugin-testing-harness-1.2.jar
The following packages are defined in the maven-plugin-testing-harness-1.2.jar
org.apache.maven.plugin.testing org.apache.maven.plugin.testing.stubs
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing</artifactId> <version>1.2</version> </parent> <artifactId>maven-plugin-testing-harness</artifactId> <name>Maven Plugin Testing Mechanism</name> <description>The Maven Plugin Testing Harness provides mechanisms to manage tests on Mojo.</description> <dependencies> <!-- maven --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</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</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.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0</version> </dependency> <!-- plexus --> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.5.1</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-archiver</artifactId> <version>1.0-alpha-7</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <configuration> <attach>true</attach> </configuration> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/maven/plugin-testing/tags/maven-plugin-testing-1.2/maven-plugin-testing-harness</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/plugin-testing/tags/maven-plugin-testing-1.2/maven-plugin-testing-harness</developerConnection> <url>http://svn.apache.org/viewcvs.cgi/maven/plugin-testing/tags/maven-plugin-testing-1.2/maven-plugin-testing-harness</url> </scm> </project>