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/04 23:00:47 UTC

svn commit: r609025 - 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: Fri Jan  4 14:00:43 2008
New Revision: 609025

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

........
  r609022 | dkulp | 2008-01-04 16:57:35 -0500 (Fri, 04 Jan 2008) | 2 lines
  
  Ooops.. Deleted the line that created the .DONE files to prevent generation when nothing changed
........

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=609025&r1=609024&r2=609025&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 Fri Jan  4 14:00:43 2008
@@ -290,6 +290,7 @@
 
             try {
                 new WSDLToJava((String[])list.toArray(new String[list.size()])).run(new ToolContext());
+                doneFile.createNewFile();
             } catch (Throwable e) {
                 getLog().debug(e);
                 throw new MojoExecutionException(e.getMessage(), e);