You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by dk...@apache.org on 2014/08/13 18:16:13 UTC

[1/2] git commit: Use jaxws21 frontend for code generation to make sure the generated code compiles fine for each of the variouis JDK versions

Repository: camel
Updated Branches:
  refs/heads/master e8e2a511a -> 343dd7733


Use jaxws21 frontend for code generation to make sure the generated code compiles fine for each of the variouis JDK versions


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/8e7d44f9
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/8e7d44f9
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/8e7d44f9

Branch: refs/heads/master
Commit: 8e7d44f9a3af06fad050518c49fd3ca1baaf9628
Parents: e8e2a51
Author: Daniel Kulp <dk...@apache.org>
Authored: Wed Aug 13 11:53:39 2014 -0400
Committer: Daniel Kulp <dk...@apache.org>
Committed: Wed Aug 13 11:56:37 2014 -0400

----------------------------------------------------------------------
 tests/camel-itest/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/8e7d44f9/tests/camel-itest/pom.xml
----------------------------------------------------------------------
diff --git a/tests/camel-itest/pom.xml b/tests/camel-itest/pom.xml
index c492a56..8ef809b 100644
--- a/tests/camel-itest/pom.xml
+++ b/tests/camel-itest/pom.xml
@@ -390,10 +390,16 @@
               <testSourceRoot>${basedir}/target/generated/src/test/java</testSourceRoot>
               <wsdlOptions>
                 <wsdlOption>
+                  <frontEnd>jaxws21</frontEnd>
                   <wsdl>${basedir}/src/test/resources/wsdl/CustomerService-1.0.0.wsdl</wsdl>
                 </wsdlOption>
                 <wsdlOption>
+                    <frontEnd>jaxws21</frontEnd>
+                    <wsdl>${basedir}/src/test/resources/wsdl/CustomerService_noSoapAction.wsdl</wsdl>
+                </wsdlOption>
+                <wsdlOption>
                   <wsdl>${basedir}/src/test/resources/wsdl/hello_world.wsdl</wsdl>
+                  <frontEnd>jaxws21</frontEnd>
                   <bindingFiles>
                     <bindingFile>${basedir}/src/test/resources/wsdl/binding.xml</bindingFile>
                   </bindingFiles>


[2/2] git commit: Update to new scala plugin builders/natures

Posted by dk...@apache.org.
Update to new scala plugin builders/natures


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/343dd773
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/343dd773
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/343dd773

Branch: refs/heads/master
Commit: 343dd7733b9b15199ddd2c3de26742df089964ef
Parents: 8e7d44f
Author: Daniel Kulp <dk...@apache.org>
Authored: Wed Aug 13 12:15:37 2014 -0400
Committer: Daniel Kulp <dk...@apache.org>
Committed: Wed Aug 13 12:15:37 2014 -0400

----------------------------------------------------------------------
 components/camel-swagger/pom.xml | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/343dd773/components/camel-swagger/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-swagger/pom.xml b/components/camel-swagger/pom.xml
index e55c542..9997f98 100644
--- a/components/camel-swagger/pom.xml
+++ b/components/camel-swagger/pom.xml
@@ -44,7 +44,9 @@
       <artifactId>camel-core</artifactId>
     </dependency>
 
-    <!-- TODO: we should avoid spring dependency and have some plugin/spi -->
+    <!-- 
+     TODO: we should avoid spring dependency and have some plugin/spi
+     -->
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-web</artifactId>
@@ -140,14 +142,14 @@
         <artifactId>maven-eclipse-plugin</artifactId>
         <configuration>
           <projectnatures>
-            <projectnature>ch.epfl.lamp.sdt.core.scalanature</projectnature>
+            <projectnature>org.scala-ide.sdt.core.scalanature</projectnature>
             <projectnature>org.eclipse.jdt.core.javanature</projectnature>
           </projectnatures>
           <buildcommands>
-            <buildcommand>ch.epfl.lamp.sdt.core.scalabuilder</buildcommand>
+            <buildcommand>org.scala-ide.sdt.core.scalabuilder</buildcommand>
           </buildcommands>
           <classpathContainers>
-            <classpathContainer>ch.epfl.lamp.sdt.launching.SCALA_CONTAINER</classpathContainer>
+            <classpathContainer>org.scala-ide.sdt.launching.SCALA_CONTAINER</classpathContainer>
             <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
           </classpathContainers>
         </configuration>