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

org.jvnet.jax_ws_commons.jaxws.TestWsGenMojo Maven / Gradle / Ivy

There is a newer version: 2.3.1-b20150201.1248
Show newest version
/*
 * Copyright 2006 Guillaume Nodet.
 *
 * Licensed 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.
 */
package org.jvnet.jax_ws_commons.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 - 2024 Weber Informatics LLC | Privacy Policy