Return-Path: Delivered-To: apmail-incubator-cxf-commits-archive@locus.apache.org Received: (qmail 73444 invoked from network); 14 Mar 2007 05:21:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Mar 2007 05:21:46 -0000 Received: (qmail 65398 invoked by uid 500); 14 Mar 2007 05:21:54 -0000 Delivered-To: apmail-incubator-cxf-commits-archive@incubator.apache.org Received: (qmail 65285 invoked by uid 500); 14 Mar 2007 05:21:53 -0000 Mailing-List: contact cxf-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-commits@incubator.apache.org Received: (qmail 65276 invoked by uid 99); 14 Mar 2007 05:21:53 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Mar 2007 22:21:53 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Mar 2007 22:21:43 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 0AC421A9838; Tue, 13 Mar 2007 22:21:23 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r518024 - in /incubator/cxf/trunk: ./ codegen-plugin2/src/main/java/org/apache/cxf/maven_plugin/ metacode/ rt/ rt/bindings/soap/ rt/bindings/xml/ rt/bindings/xml/src/main/resources/META-INF/ rt/bindings/xml/src/main/resources/schemas/ rt/fr... Date: Wed, 14 Mar 2007 05:21:16 -0000 To: cxf-commits@incubator.apache.org From: ema@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070314052123.0AC421A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ema Date: Tue Mar 13 22:21:15 2007 New Revision: 518024 URL: http://svn.apache.org/viewvc?view=rev&rev=518024 Log: [CXF-222]Replaced tools with tools2 ,updated the dependencies related to old tools Removed: incubator/cxf/trunk/rt/bindings/xml/src/main/resources/META-INF/extensions.xml incubator/cxf/trunk/rt/bindings/xml/src/main/resources/schemas/ incubator/cxf/trunk/rt/transports/jms/src/main/resources/META-INF/extensions.xml incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/ Modified: incubator/cxf/trunk/codegen-plugin2/src/main/java/org/apache/cxf/maven_plugin/WSDL2JavaMojo.java incubator/cxf/trunk/metacode/pom.xml incubator/cxf/trunk/pom.xml incubator/cxf/trunk/rt/bindings/soap/pom.xml incubator/cxf/trunk/rt/bindings/xml/pom.xml incubator/cxf/trunk/rt/frontend/jaxws/pom.xml incubator/cxf/trunk/rt/management/pom.xml incubator/cxf/trunk/rt/pom.xml incubator/cxf/trunk/rt/transports/http/pom.xml incubator/cxf/trunk/rt/transports/http2/pom.xml incubator/cxf/trunk/rt/transports/jms/pom.xml incubator/cxf/trunk/rt/ws/policy/pom.xml incubator/cxf/trunk/rt/ws/rm/pom.xml incubator/cxf/trunk/systests/pom.xml incubator/cxf/trunk/testutils/pom.xml incubator/cxf/trunk/tools2/pom.xml incubator/cxf/trunk/tools2/xjc/dv-test/pom.xml incubator/cxf/trunk/tools2/xjc/dv/pom.xml incubator/cxf/trunk/tools2/xjc/pom.xml Modified: incubator/cxf/trunk/codegen-plugin2/src/main/java/org/apache/cxf/maven_plugin/WSDL2JavaMojo.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/codegen-plugin2/src/main/java/org/apache/cxf/maven_plugin/WSDL2JavaMojo.java?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/codegen-plugin2/src/main/java/org/apache/cxf/maven_plugin/WSDL2JavaMojo.java (original) +++ incubator/cxf/trunk/codegen-plugin2/src/main/java/org/apache/cxf/maven_plugin/WSDL2JavaMojo.java Tue Mar 13 22:21:15 2007 @@ -39,19 +39,19 @@ * @parameter */ String testSourceRoot; - + /** * @parameter expression="${project.build.directory}/generated/src/main/java" * @required */ String sourceRoot; - + /** * @parameter expression="${project.build.outputDirectory}" * @required */ String classesDirectory; - + /** * @parameter expression="${project.compileClasspathElements}" * @required @@ -63,8 +63,8 @@ * @required */ MavenProject project; - - + + /** * @parameter */ @@ -74,13 +74,13 @@ String outputDir = testSourceRoot == null ? sourceRoot : testSourceRoot; File outputDirFile = new File(outputDir); outputDirFile.mkdirs(); - + File classesDir = new File(classesDirectory); classesDir.mkdirs(); - + if (wsdlOptions == null) { - throw new MojoExecutionException("Must specify wsdlOptions"); + throw new MojoExecutionException("Must specify wsdlOptions"); } StringBuffer buf = new StringBuffer(); @@ -90,7 +90,7 @@ buf.append(File.pathSeparatorChar); } String newCp = buf.toString(); - + String cp = System.getProperty("java.class.path"); SecurityManager oldSm = System.getSecurityManager(); long timestamp = CodegenUtils.getCodegenTimestamp(); @@ -98,9 +98,6 @@ try { System.setProperty("java.class.path", newCp); System.setSecurityManager(new NoExitSecurityManager()); - - System.out.println("----wsdlOptions.length--- " + wsdlOptions.length); - for (int x = 0; x < wsdlOptions.length; x++) { processWsdl(wsdlOptions[x], outputDirFile, timestamp); @@ -114,15 +111,17 @@ } finally { System.setSecurityManager(oldSm); System.setProperty("java.class.path", cp); - } + } if (project != null && sourceRoot != null) { project.addCompileSourceRoot(sourceRoot); } if (project != null && testSourceRoot != null) { project.addTestCompileSourceRoot(testSourceRoot); - } + } + + System.gc(); } - + private void processWsdl(WsdlOption wsdlOption, File outputDirFile, long cgtimestamp) throws MojoExecutionException { @@ -144,13 +143,13 @@ } } } - } - - - + } + + + if (doWork) { - - List list = new ArrayList(); + + List list = new ArrayList(); if (wsdlOption.getPackagenames() != null) { Iterator it = wsdlOption.getPackagenames().iterator(); while (it.hasNext()) { @@ -162,27 +161,23 @@ //list.add("-verbose"); list.add("-d"); list.add(outputDirFile.toString()); - + if (wsdlOption.getExtraargs() != null) { Iterator it = wsdlOption.getExtraargs().iterator(); while (it.hasNext()) { list.add(it.next().toString()); } - } - list.add(wsdlOption.getWsdl()); - - + } + list.add(wsdlOption.getWsdl()); + + try { try { - System.out.println("----------MAVEN CODEGEN PLUGIN--------------"); StringBuffer strBuffer = new StringBuffer(); - for (int i = 0 ; i < list.size(); i++) { + for (int i = 0; i < list.size(); i++) { strBuffer.append(list.get(i)); strBuffer.append(" "); } - System.out.println(strBuffer.toString()); - System.out.println("--------------------------------------------"); - //System.out.println WSDLToJava.main((String[])list.toArray(new String[list.size()])); doneFile.delete(); doneFile.createNewFile(); @@ -208,26 +203,26 @@ deleteDir(files[idx]); } } - + if (f.exists()) { return f.delete(); } - + return true; } - + private boolean isDefServiceName(WsdlOption wsdlOption) { List args = wsdlOption.extraargs; if (args == null) { return false; } - for (int i = 0 ; i < args.size(); i++) { + for (int i = 0; i < args.size(); i++) { if ("-sn".equalsIgnoreCase((String)args.get(i))) { return true; } } return false; - + } - + } Modified: incubator/cxf/trunk/metacode/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/metacode/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/metacode/pom.xml (original) +++ incubator/cxf/trunk/metacode/pom.xml Tue Mar 13 22:21:15 2007 @@ -145,7 +145,7 @@ org.apache.cxf - cxf-tools-xjc-dv + cxf-tools2-xjc-dv ${project.version} Modified: incubator/cxf/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/pom.xml (original) +++ incubator/cxf/trunk/pom.xml Tue Mar 13 22:21:15 2007 @@ -123,14 +123,15 @@ buildtools parent - common - tools - metacode - codegen-plugin api + rt/core + metacode + tools2 + codegen-plugin2 testutils rt + tools2/javato integration systests Modified: incubator/cxf/trunk/rt/bindings/soap/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/bindings/soap/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/rt/bindings/soap/pom.xml (original) +++ incubator/cxf/trunk/rt/bindings/soap/pom.xml Tue Mar 13 22:21:15 2007 @@ -40,9 +40,8 @@ org.apache.cxf - cxf-tools-common + cxf-tools2-common ${project.version} - test @@ -81,11 +80,6 @@ javax.xml.bind jaxb-api - - - org.apache.cxf - cxf-tools-common - ${project.version} Modified: incubator/cxf/trunk/rt/bindings/xml/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/bindings/xml/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/rt/bindings/xml/pom.xml (original) +++ incubator/cxf/trunk/rt/bindings/xml/pom.xml Tue Mar 13 22:21:15 2007 @@ -71,40 +71,15 @@ geronimo-activation_1.1_spec test + + + org.apache.cxf + cxf-tools2-common + ${project.version} + + + - - - - - org.apache.cxf - cxf-common-xsd - ${project.version} - - - generate-sources - generate-sources - - ${basedir}/target/generated/src/main/java - - - ${basedir}/src/main/resources/schemas/wsdl/xml-binding.xsd - ${basedir}/src/main/resources/schemas/wsdl/xml-binding.xjb - - ${basedir}/target/generated/src/main/java/org/apache/cxf/wsdl - - - - - - xsdtojava - - - - - - - - scm:svn:http://svn.apache.org/repos/asf/incubator/cxf/trunk/rt/bindings/xml scm:svn:https://svn.apache.org/repos/asf/incubator/cxf/trunk/rt/bindings/xml Modified: incubator/cxf/trunk/rt/frontend/jaxws/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/frontend/jaxws/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/rt/frontend/jaxws/pom.xml (original) +++ incubator/cxf/trunk/rt/frontend/jaxws/pom.xml Tue Mar 13 22:21:15 2007 @@ -57,7 +57,7 @@ org.apache.cxf - cxf-tools-common + cxf-tools2-common ${project.version} Modified: incubator/cxf/trunk/rt/management/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/management/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/rt/management/pom.xml (original) +++ incubator/cxf/trunk/rt/management/pom.xml Tue Mar 13 22:21:15 2007 @@ -65,6 +65,12 @@ ${project.version} test + + + org.apache.cxf + cxf-tools2-xjc-dv + ${project.version} + org.easymock @@ -103,7 +109,7 @@ org.apache.cxf - cxf-tools-xjc-dv + cxf-tools2-xjc-dv ${project.version} Modified: incubator/cxf/trunk/rt/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/rt/pom.xml (original) +++ incubator/cxf/trunk/rt/pom.xml Tue Mar 13 22:21:15 2007 @@ -32,7 +32,6 @@ - core management transports/local databinding/jaxb Modified: incubator/cxf/trunk/rt/transports/http/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/http/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/rt/transports/http/pom.xml (original) +++ incubator/cxf/trunk/rt/transports/http/pom.xml Tue Mar 13 22:21:15 2007 @@ -50,7 +50,7 @@ org.apache.cxf - cxf-tools-common + cxf-tools2-common ${project.version} @@ -120,7 +120,7 @@ org.apache.cxf - cxf-tools-xjc-dv + cxf-tools2-xjc-dv ${project.version} Modified: incubator/cxf/trunk/rt/transports/http2/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/http2/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/rt/transports/http2/pom.xml (original) +++ incubator/cxf/trunk/rt/transports/http2/pom.xml Tue Mar 13 22:21:15 2007 @@ -55,7 +55,7 @@ org.apache.cxf - cxf-tools-common + cxf-tools2-common ${project.version} @@ -127,7 +127,7 @@ org.apache.cxf - cxf-tools-xjc-dv + cxf-tools2-xjc-dv ${project.version} Modified: incubator/cxf/trunk/rt/transports/jms/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/jms/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/rt/transports/jms/pom.xml (original) +++ incubator/cxf/trunk/rt/transports/jms/pom.xml Tue Mar 13 22:21:15 2007 @@ -91,52 +91,15 @@ activemq-core test + + + org.apache.cxf + cxf-tools2-common + ${project.version} + + - - - - - org.apache.cxf - cxf-common-xsd - ${project.version} - - - generate-sources - generate-sources - - ${basedir}/target/generated/src/main/java - - - ${basedir}/src/main/resources/schemas/wsdl/jms.xsd - ${basedir}/src/main/resources/schemas/wsdl/jms.xjb - - ${basedir}/target/generated/src/main/java/org/apache/cxf/wsdl - - - - - - xsdtojava - - - - - - org.apache.cxf - cxf-tools-xjc-dv - ${project.version} - - - org.apache.cxf - cxf-common-utilities - ${project.version} - - - - - - Modified: incubator/cxf/trunk/rt/ws/policy/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/ws/policy/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/rt/ws/policy/pom.xml (original) +++ incubator/cxf/trunk/rt/ws/policy/pom.xml Tue Mar 13 22:21:15 2007 @@ -37,7 +37,7 @@ org.apache.cxf - cxf-tools-common + cxf-tools2-common ${project.version} Modified: incubator/cxf/trunk/rt/ws/rm/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/ws/rm/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/rt/ws/rm/pom.xml (original) +++ incubator/cxf/trunk/rt/ws/rm/pom.xml Tue Mar 13 22:21:15 2007 @@ -121,7 +121,7 @@ org.apache.cxf - cxf-tools-xjc-dv + cxf-tools2-xjc-dv ${project.version} Modified: incubator/cxf/trunk/systests/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/systests/pom.xml (original) +++ incubator/cxf/trunk/systests/pom.xml Tue Mar 13 22:21:15 2007 @@ -50,27 +50,17 @@ org.apache.cxf - cxf-tools-common + cxf-tools2-common ${project.version} org.apache.cxf - cxf-tools-java2wsdl + cxf-tools2-java2wsdl ${project.version} org.apache.cxf - cxf-tools-misctools - ${project.version} - - - org.apache.cxf - cxf-tools-validator - ${project.version} - - - org.apache.cxf - cxf-tools-java2wsdl + cxf-tools2-validator ${project.version} Modified: incubator/cxf/trunk/testutils/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/testutils/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/testutils/pom.xml (original) +++ incubator/cxf/trunk/testutils/pom.xml Tue Mar 13 22:21:15 2007 @@ -40,7 +40,7 @@ org.apache.cxf - cxf-tools-common + cxf-tools2-common ${project.version} @@ -162,10 +162,23 @@ + + + org.apache.cxf + cxf-tools2-xjc-dv + ${project.version} + + + org.apache.cxf + cxf-common-utilities + ${project.version} + + + org.apache.cxf - cxf-codegen-plugin + cxf-codegen-plugin2 ${project.version} @@ -186,14 +199,239 @@ ${basedir}/src/main/resources/wsdl/async_binding.xml + -sn + SOAPService + + + + + ${basedir}/src/main/resources/wsdl/hello_world.wsdl + + -b + ${basedir}/src/main/resources/wsdl/async_binding.xml + + -sn + SOAPProviderService + + + + + + ${basedir}/src/main/resources/wsdl/hello_world.wsdl + + -b + ${basedir}/src/main/resources/wsdl/async_binding.xml + + -sn + SOAPDispatchService + + + + + ${basedir}/src/main/resources/wsdl/hello_world.wsdl + + -b + ${basedir}/src/main/resources/wsdl/async_binding.xml + + -sn + SOAPService_DocLitBare + + + + + ${basedir}/src/main/resources/wsdl/hello_world.wsdl + + -b + ${basedir}/src/main/resources/wsdl/async_binding.xml + + -sn + SOAPServiceAddressingDocLitBare + + + + + + + ${basedir}/src/main/resources/wsdl/hello_world.wsdl + + -b + ${basedir}/src/main/resources/wsdl/async_binding.xml + + -sn + SOAPService_Test1 + + + + + ${basedir}/src/main/resources/wsdl/hello_world.wsdl + + -b + ${basedir}/src/main/resources/wsdl/async_binding.xml + + -sn + SoapPort_Test2 + + + + + ${basedir}/src/main/resources/wsdl/hello_world.wsdl + + -b + ${basedir}/src/main/resources/wsdl/async_binding.xml + + -sn + SOAPServiceAddressing + + + + + ${basedir}/src/main/resources/wsdl/hello_world.wsdl + + -b + ${basedir}/src/main/resources/wsdl/async_binding.xml + + -sn + SOAPServiceConcurrencyTest + + + + + ${basedir}/src/main/resources/wsdl/hello_world_soap12.wsdl + ${basedir}/src/main/resources/wsdl/hello_world_secure.wsdl + + -sn + SecureSOAPService + + + + + ${basedir}/src/main/resources/wsdl/hello_world_secure.wsdl + + -sn + SecureDontRequireClientAuthSOAPService + + + + + ${basedir}/src/main/resources/wsdl/hello_world_secure.wsdl + + -sn + TargetSecureSOAPService + + + + + ${basedir}/src/main/resources/wsdl/hello_world_secure.wsdl + + -sn + InterSecureSOAPService + + + + + ${basedir}/src/main/resources/wsdl/hello_world_secure.wsdl + + -sn + TargetSecureDontRequireClientAuthSOAPService + + + + + ${basedir}/src/main/resources/wsdl/hello_world_secure.wsdl + + -sn + InterSecureDontRequireClientAuthSOAPService + + + + + ${basedir}/src/main/resources/wsdl/hello_world_secure.wsdl + + -sn + SecureSOAPServiceServerConfiguredByGoodProvider + + + + + ${basedir}/src/main/resources/wsdl/hello_world_secure.wsdl + + -sn + SecureSOAPServiceServerConfiguredByBadProvider + + + + + ${basedir}/src/main/resources/wsdl/hello_world_secure.wsdl + + -sn + SecureSOAPServiceP12 + + + + + ${basedir}/src/main/resources/wsdl/hello_world_secure.wsdl + + -sn + SecureSOAPServiceDifferentCipherSuites + + + + + + ${basedir}/src/main/resources/wsdl/hello_world_secure.wsdl + + -sn + SecureSOAPServiceClientPropertiesSet + + + + + ${basedir}/src/main/resources/wsdl/hello_world_secure.wsdl + + -sn + SecureSOAPServiceClientPropertiesNotSet + + + + + + + + + ${basedir}/src/main/resources/wsdl/greeter_control.wsdl + + -b + + ${basedir}/src/main/resources/wsdl/greeter_control.xjb + + -sn + BasicGreeterService + + + + + + + ${basedir}/src/main/resources/wsdl/greeter_control.wsdl + + -b + + ${basedir}/src/main/resources/wsdl/greeter_control.xjb + + -sn + ControlService + + + + ${basedir}/src/main/resources/wsdl/greeter_control.wsdl @@ -201,71 +439,345 @@ ${basedir}/src/main/resources/wsdl/greeter_control.xjb + -sn + GreeterService + + + ${basedir}/src/main/resources/wsdl/mtom_xop.wsdl + + ${basedir}/src/main/resources/wsdl/swa-mime.wsdl + ${basedir}/src/main/resources/wsdl/hello_world_xml_mixed.wsdl + ${basedir}/src/main/resources/wsdl/hello_world_xml_bare.wsdl + ${basedir}/src/main/resources/wsdl/hello_world_xml_wrapped.wsdl + - ${basedir}/src/main/resources/wsdl/hello_world_rpc_lit.wsdl + ${basedir}/src/main/resources/wsdl/hello_world_rpc_lit.wsdl + + -sn + GreeterService + + + + ${basedir}/src/main/resources/wsdl/hello_world_rpc_lit.wsdl + + -sn + GreeterService + + + + + + ${basedir}/src/main/resources/wsdl/hello_world_rpc_lit.wsdl + + -sn + SOAPServiceRPCLit + + + + ${basedir}/src/main/resources/wsdl/hello_world_rpc_lit.wsdl + + -sn + SOAPServiceProviderRPCLit + + + + ${basedir}/src/main/resources/wsdl/hello_world_rpc_lit.wsdl + + -sn + SOAPServiceRPCLit1 + + + + + ${basedir}/src/main/resources/wsdl/hello_world_rpc_lit.wsdl + + -sn + SOAPServiceRPCLit2 + + + + ${basedir}/src/main/resources/wsdl/hello_world_rpc_lit.wsdl + + -sn + SOAPServiceRPCLit3 + + + + ${basedir}/src/main/resources/wsdl/hello_world_rpc_lit.wsdl + + -sn + SOAPServiceRPCLit4 + + + + + ${basedir}/src/main/resources/wsdl/hello_world_rpc_lit.wsdl + + -sn + SOAPServiceRPCLit5 + + + + ${basedir}/src/main/resources/wsdl/hello_world_rpc_lit.wsdl + + -sn + SOAPServiceRPCLit6 + + + + ${basedir}/src/main/resources/wsdl/hello_world_mixedstyle.wsdl + + + + ${basedir}/src/main/resources/wsdl/hello_world_doc_lit.wsdl + + -sn + SOAPService + + + + + + + + + ${basedir}/src/main/resources/wsdl/hello_world_doc_lit.wsdl + + -sn + SOAPService2 + + + + + ${basedir}/src/main/resources/wsdl/hello_world_doc_lit.wsdl + + -sn + SOAPService3 + + + + ${basedir}/src/main/resources/wsdl/hello_world_doc_lit.wsdl + + -sn + SOAPService4 + + + + + + ${basedir}/src/main/resources/wsdl/hello_world_doc_lit.wsdl + + -sn + SOAPService5 + + + + + ${basedir}/src/main/resources/wsdl/hello_world_doc_lit.wsdl + + -sn + XMLService1 + + + + + + ${basedir}/src/main/resources/wsdl/hello_world_doc_lit.wsdl + + -sn + XMLService2 + + + + + + ${basedir}/src/main/resources/wsdl/hello_world_doc_lit.wsdl + + -sn + XMLService3 + + + + + + ${basedir}/src/main/resources/wsdl/hello_world_doc_lit.wsdl + + -sn + XMLService4 + + + ${basedir}/src/main/resources/wsdl/doc_lit_bare.wsdl + + + + + + + + + ${basedir}/src/main/resources/wsdl/jms_test.wsdl + + -sn + HelloWorldOneWayQueueService + + + + + + ${basedir}/src/main/resources/wsdl/jms_test.wsdl + + -sn + HelloWorldPubSubService + + + + + + + + + + ${basedir}/src/main/resources/wsdl/jms_test.wsdl + + -sn + HelloWorldService + + + + ${basedir}/src/main/resources/wsdl/handler_test.wsdl + + + ${basedir}/src/main/resources/wsdl/soapheader.wsdl + + + ${basedir}/src/main/resources/wsdl/soapheader2.wsdl + ${basedir}/src/main/resources/wsdl/soapheader_rpc.wsdl + + ${basedir}/src/main/resources/wsdl/locator.wsdl - + ${basedir}/src/main/resources/wsdl/schema_validation.wsdl + + ${basedir}/src/main/resources/wsdl/anonymous_complex_type.wsdl + + ${basedir}/src/main/resources/wsdl/basic_callback_test.wsdl + + + -sn + SOAPService + + + + + ${basedir}/src/main/resources/wsdl/basic_callback_test.wsdl + + + -sn + CallbackService + + + @@ -330,21 +842,28 @@ + ${basedir}/src/main/resources/wsdl/addNumbers.wsdl + + ${basedir}/src/main/resources/wsdl/calculator.wsdl + ${basedir}/src/main/resources/wsdl/jaxb_element_test.wsdl + ${basedir}/src/main/resources/wsdl/ordered_param_holder.wsdl + ${basedir}/src/main/resources/wsdl/hello_world_services.wsdl + Modified: incubator/cxf/trunk/tools2/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools2/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/tools2/pom.xml (original) +++ incubator/cxf/trunk/tools2/pom.xml Tue Mar 13 22:21:15 2007 @@ -35,7 +35,6 @@ common validator wsdlto - javato xjc Modified: incubator/cxf/trunk/tools2/xjc/dv-test/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools2/xjc/dv-test/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/tools2/xjc/dv-test/pom.xml (original) +++ incubator/cxf/trunk/tools2/xjc/dv-test/pom.xml Tue Mar 13 22:21:15 2007 @@ -19,7 +19,7 @@ 4.0.0 org.apache.cxf - cxf-tools-xjc-dv-test + cxf-tools2-xjc-dv-test jar 2.0-incubator-RC-SNAPSHOT Apache CXF XJC Default Value Plugin Tests Modified: incubator/cxf/trunk/tools2/xjc/dv/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools2/xjc/dv/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/tools2/xjc/dv/pom.xml (original) +++ incubator/cxf/trunk/tools2/xjc/dv/pom.xml Tue Mar 13 22:21:15 2007 @@ -19,7 +19,7 @@ 4.0.0 org.apache.cxf - cxf-tools-xjc-dv + cxf-tools2-xjc-dv jar 2.0-incubator-RC-SNAPSHOT Apache CXF XJC Default Value Plugin Modified: incubator/cxf/trunk/tools2/xjc/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools2/xjc/pom.xml?view=diff&rev=518024&r1=518023&r2=518024 ============================================================================== --- incubator/cxf/trunk/tools2/xjc/pom.xml (original) +++ incubator/cxf/trunk/tools2/xjc/pom.xml Tue Mar 13 22:21:15 2007 @@ -19,7 +19,7 @@ 4.0.0 org.apache.cxf - cxf-tools-xjc + cxf-tools2-xjc pom 2.0-incubator-RC-SNAPSHOT Apache CXF XJC Plugins