1 package org.codehaus.mojo.jaxws;
2
3 import java.io.File;
4
5 /**
6 * Parses wsdl and binding files and generates Java code needed to access it
7 * (for tests.)
8 *
9 * @svnLink $Revision: 3872 $;$Date: 2009-08-04 13:41:09 +0200 (Di, 04. Aug 2009) $;$Author: swismer $;$URL: https://el4j.svn.sourceforge.net/svnroot/el4j/branches/el4j_3_1/el4j/maven/plugins/maven-jaxws-plugin/src/main/java/org/codehaus/mojo/jaxws/TestWsImportMojo.java $
10 *
11 * @author Kohsuke Kawaguchi
12 */
13 public class TestWsImportMojo extends WsImportMojo {
14 /**
15 * Specify where to place output generated classes
16 * Set to "" to turn it off
17 * @parameter default-value="${project.build.testOutputDirectory}"
18 */
19 protected File destDir;
20
21 /**
22 * Either ${build.outputDirectory} or ${build.testOutputDirectory}.
23 */
24 protected File getDestDir() {
25 return destDir;
26 }
27 }