You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2011/11/15 16:17:36 UTC

svn commit: r1202232 - in /camel/branches/camel-2.8.x: ./ platforms/karaf/features/src/main/resources/ tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/osgi/rss/ tests/camel-itest-osgi/src/test/resources/org/apache/camel/itest/karaf/

Author: ningjiang
Date: Tue Nov 15 15:17:35 2011
New Revision: 1202232

URL: http://svn.apache.org/viewvc?rev=1202232&view=rev
Log:
Merged revisions 1202205-1202206,1202223 via svnmerge from 
https://svn.apache.org/repos/asf/camel/trunk

........
  r1202205 | ningjiang | 2011-11-15 22:22:30 +0800 (Tue, 15 Nov 2011) | 1 line
  
  CAMEL-4681 Add xml-spec-api feature into apache-camel
........
  r1202206 | ningjiang | 2011-11-15 22:23:32 +0800 (Tue, 15 Nov 2011) | 1 line
  
  CAMEL-4671 Fixed the osgi itest errors
........
  r1202223 | ningjiang | 2011-11-15 23:00:03 +0800 (Tue, 15 Nov 2011) | 1 line
  
  CAMEL-4681 set the xml-spec-api feature start level to be 10 as Dan suggested
........

Modified:
    camel/branches/camel-2.8.x/   (props changed)
    camel/branches/camel-2.8.x/platforms/karaf/features/src/main/resources/features.xml
    camel/branches/camel-2.8.x/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/osgi/rss/RssPollingConsumerTest.java
    camel/branches/camel-2.8.x/tests/camel-itest-osgi/src/test/resources/org/apache/camel/itest/karaf/jre.properties

Propchange: camel/branches/camel-2.8.x/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Tue Nov 15 15:17:35 2011
@@ -1 +1 @@
-/camel/trunk:1202148,1202167,1202204,1202215
+/camel/trunk:1202148,1202167,1202204-1202206,1202215,1202223

Propchange: camel/branches/camel-2.8.x/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: camel/branches/camel-2.8.x/platforms/karaf/features/src/main/resources/features.xml
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.8.x/platforms/karaf/features/src/main/resources/features.xml?rev=1202232&r1=1202231&r2=1202232&view=diff
==============================================================================
--- camel/branches/camel-2.8.x/platforms/karaf/features/src/main/resources/features.xml (original)
+++ camel/branches/camel-2.8.x/platforms/karaf/features/src/main/resources/features.xml Tue Nov 15 15:17:35 2011
@@ -18,6 +18,12 @@
 -->
 <features name='camel-${pom.version}'>
   <repository>mvn:org.apache.cxf.karaf/apache-cxf/${cxf-version}/xml/features</repository>
+  <feature name="xml-specs-api" version='${servicemix-specs-version}' resolver='(obr)' start-level='10'>
+    <bundle dependency="true">mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.activation-api-1.1/${servicemix-specs-version}</bundle>
+    <bundle dependency="true">mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxb-api-2.2/${servicemix-specs-version}</bundle>
+    <bundle dependency="true">mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.stax-api-1.0/${servicemix-specs-version}</bundle>
+  </feature>
+  
   <feature name='camel' version='${pom.version}' resolver='(obr)' start-level='50'>
     <feature version='${pom.version}'>camel-core</feature>
     <feature version='${pom.version}'>camel-spring</feature>

Modified: camel/branches/camel-2.8.x/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/osgi/rss/RssPollingConsumerTest.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.8.x/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/osgi/rss/RssPollingConsumerTest.java?rev=1202232&r1=1202231&r2=1202232&view=diff
==============================================================================
--- camel/branches/camel-2.8.x/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/osgi/rss/RssPollingConsumerTest.java (original)
+++ camel/branches/camel-2.8.x/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/osgi/rss/RssPollingConsumerTest.java Tue Nov 15 15:17:35 2011
@@ -26,6 +26,7 @@ import org.apache.camel.builder.RouteBui
 import org.apache.camel.component.mock.MockEndpoint;
 import org.apache.camel.component.rss.RssConstants;
 import org.apache.camel.itest.osgi.OSGiIntegrationTestSupport;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.ops4j.pax.exam.Option;
@@ -36,6 +37,7 @@ import static org.ops4j.pax.exam.OptionU
 import static org.ops4j.pax.exam.container.def.PaxRunnerOptions.scanFeatures;
 
 @RunWith(JUnit4TestRunner.class)
+@Ignore("abdera-core bundle has a wrong stax api dependency")
 public class RssPollingConsumerTest extends OSGiIntegrationTestSupport {
 
     @Test

Modified: camel/branches/camel-2.8.x/tests/camel-itest-osgi/src/test/resources/org/apache/camel/itest/karaf/jre.properties
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.8.x/tests/camel-itest-osgi/src/test/resources/org/apache/camel/itest/karaf/jre.properties?rev=1202232&r1=1202231&r2=1202232&view=diff
==============================================================================
--- camel/branches/camel-2.8.x/tests/camel-itest-osgi/src/test/resources/org/apache/camel/itest/karaf/jre.properties (original)
+++ camel/branches/camel-2.8.x/tests/camel-itest-osgi/src/test/resources/org/apache/camel/itest/karaf/jre.properties Tue Nov 15 15:17:35 2011
@@ -158,7 +158,7 @@ jre-1.6= \
  com.sun.org.apache.xerces.internal.xni, \
  com.sun.jndi.ldap, \
  javax.accessibility, \
-# javax.activation, \
+ javax.activation, \
  javax.activity, \
  javax.annotation;version="1.1", \
  javax.annotation.processing;version="1.1", \
@@ -237,12 +237,12 @@ jre-1.6= \
  javax.tools, \
  javax.transaction; javax.transaction.xa; partial=true; mandatory:=partial, \
  javax.xml, \
-# javax.xml.bind, \
-# javax.xml.bind.annotation, \
-# javax.xml.bind.annotation.adapters, \
-# javax.xml.bind.attachment, \
-# javax.xml.bind.helpers, \
-# javax.xml.bind.util, \
+ javax.xml.bind, \
+ javax.xml.bind.annotation, \
+ javax.xml.bind.annotation.adapters, \
+ javax.xml.bind.attachment, \
+ javax.xml.bind.helpers, \
+ javax.xml.bind.util, \
  javax.xml.crypto, \
  javax.xml.crypto.dom, \
  javax.xml.crypto.dsig, \
@@ -253,9 +253,9 @@ jre-1.6= \
  javax.xml.namespace, \
  javax.xml.parsers, \
 # javax.xml.soap, \
-# javax.xml.stream, \
-# javax.xml.stream.events, \
-# javax.xml.stream.util, \
+ javax.xml.stream, \
+ javax.xml.stream.events, \
+ javax.xml.stream.util, \
  javax.xml.transform, \
  javax.xml.transform.dom, \
  javax.xml.transform.sax, \