You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2008/01/02 23:53:40 UTC

svn commit: r608276 - in /incubator/cxf/branches/2.0.x-fixes: ./ maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/WSDL2JavaMojo.java

Author: dkulp
Date: Wed Jan  2 14:53:39 2008
New Revision: 608276

URL: http://svn.apache.org/viewvc?rev=608276&view=rev
Log:
Merged revisions 608043 via svnmerge from 
https://svn.apache.org/repos/asf/incubator/cxf/trunk

........
  r608043 | mmao | 2008-01-02 03:53:07 -0500 (Wed, 02 Jan 2008) | 3 lines
  
  * Add the specific wsdlRoot into the wsdlOptions array as well
........

Modified:
    incubator/cxf/branches/2.0.x-fixes/   (props changed)
    incubator/cxf/branches/2.0.x-fixes/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/WSDL2JavaMojo.java

Propchange: incubator/cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: incubator/cxf/branches/2.0.x-fixes/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/WSDL2JavaMojo.java
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/WSDL2JavaMojo.java?rev=608276&r1=608275&r2=608276&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/WSDL2JavaMojo.java (original)
+++ incubator/cxf/branches/2.0.x-fixes/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/WSDL2JavaMojo.java Wed Jan  2 14:53:39 2008
@@ -116,6 +116,8 @@
             if (testWsdlRoot.exists()) {
                 options.addAll(getWsdlOptionsFromDir(testWsdlRoot));
             }
+        } else {
+            options.addAll(getWsdlOptionsFromDir(new File(wsdlRoot)));
         }
 
         if (wsdlOptions != null) {