Author: bvahdat
Date: Sat May 5 16:29:18 2012
New Revision: 1334444
URL: http://svn.apache.org/viewvc?rev=1334444&view=rev
Log:
Both the 'camel-test-blueprint' as well as 'camel-maven-plugin' modules should be compilable
for the folks using the eclipse IDE.
Modified:
camel/trunk/components/camel-test-blueprint/pom.xml
Modified: camel/trunk/components/camel-test-blueprint/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-test-blueprint/pom.xml?rev=1334444&r1=1334443&r2=1334444&view=diff
==============================================================================
--- camel/trunk/components/camel-test-blueprint/pom.xml (original)
+++ camel/trunk/components/camel-test-blueprint/pom.xml Sat May 5 16:29:18 2012
@@ -95,6 +95,14 @@
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.configadmin</artifactId>
+ <!-- exclude the following dependency which otherwise would pop up a lot
of compilation
+ errors both by this and the camel-maven-plugin modules under eclipse.
-->
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.osgi.foundation</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<!-- optional dependencies for running tests -->
|