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

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

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

import java.io.File;

/**
 * Parses wsdl and binding files and generates Java code needed to access it
 * (for tests.)
 *
 * @author Kohsuke Kawaguchi
 */
public class TestWsImportMojo extends WsImportMojo {
    /**
     * 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