All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codehaus.mojo.jaxws.TestWsGenMojo Maven / Gradle / Ivy

There is a newer version: 2.6
Show newest version
package org.codehaus.mojo.jaxws;

import java.io.File;

/**
 * Reads a JAX-WS service endpoint implementation class
 * and generates all of the portable artifacts for a JAX-WS web service
 * (into the generate test source directroy.)
 *
 * 

* Due to MNG-1508, this requires 2.0.5 or higher. *

* * @goal wsgen-test * @phase process-test-classes * @requiresDependencyResolution * @description generate JAX-WS wrapper beans. */ public class TestWsGenMojo extends AbstractWsGenMojo { /** * Specify where to place output generated classes * Set to "" to turn it off * @parameter default-value="${project.build.testOutputDirectory}" */ protected File destDir; /** * Either ${build.outputDirectory} or ${build.testOutputDirectory}. */ protected File getDestDir() { return destDir; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy