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

org.codehaus.mojo.jaxws.MainWsImportMojo 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.
 *
 * @goal wsimport
 * @phase generate-sources
 * @requiresDependencyResolution
 * @description JAXWS 2.x Plugin.
 *
 * @author Kohsuke Kawaguchi
 */
public class MainWsImportMojo extends WsImportMojo {
    /**
     * Specify where to place output generated classes
     * Set to "" to turn it off
     * @parameter default-value="${project.build.outputDirectory}"
     */
    protected File destDir;

    /**
     * Either ${build.outputDirectory} or ${build.testOutputDirectory}.
     */
    protected File getDestDir() {
        return destDir;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy