Maven cxf-codegen-plugin:2.1 does not delete 'DONE' file --------------------------------------------------------
Key: CXF-1582 URL: https://issues.apache.org/jira/browse/CXF-1582 Project: CXF Issue Type: Bug Components: Tooling Affects Versions: 2.1 Environment: Java version: 1.5.0_13 OS name: "mac os x" version: "10.4.11" arch: "i386" Reporter: Cameron Ough When using wsdl2java codegen plugin from m2eclipse plugin, the 'DONE' file is not deleted consistently, stopping successive attempts to regenerate source artifacts from WSDL. Pom section is as follows: <build> <plugins> <plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-codegen-plugin</artifactId> <version>2.1</version> <executions> <execution> <phase>generate-sources</phase> <configuration> <sourceRoot> ${basedir}/src/main/java/ </sourceRoot> <wsdlOptions> <wsdlOption> <wsdl> ${basedir}/src/main/resources/wsdl/service.wsdl </wsdl> </wsdlOption> </wsdlOptions> </configuration> <goals> <goal>wsdl2java</goal> </goals> </execution> </executions> </plugin> </plugins> </build> -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.