harness-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.glassfish.metro</groupId> <artifactId>harness-maven-plugin</artifactId> <version>3.0.0-M4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2012, 2023 Oracle and/or its affiliates. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v. 1.0, which is available at http://www.eclipse.org/org/documents/edl-v10.php. SPDX-License-Identifier: BSD-3-Clause --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.glassfish.metro</groupId> <artifactId>ws-test-framework</artifactId> <version>3.0.0-M4</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.glassfish.metro</groupId> <artifactId>harness-maven-plugin</artifactId> <version>3.0.0-M4</version> <packaging>maven-plugin</packaging> <name>WS Test Harness Maven Plugin</name> <url>http://ws-test-harness.java.net/</url> <properties> <maven.compiler.release>11</maven.compiler.release> <maven.compiler.testRelease>${maven.compiler.release}</maven.compiler.testRelease> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-archiver</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <configuration> <goalPrefix>harness</goalPrefix> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> <extractors> <extractor>java-annotations</extractor> </extractors> </configuration> <executions> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> </plugin> </plugins> </build> <reporting> <excludeDefaults>true</excludeDefaults> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> </plugin> </plugins> </reporting> </project>