Author: davsclaus
Date: Wed Jun 18 22:10:30 2008
New Revision: 669390
URL: http://svn.apache.org/viewvc?rev=669390&view=rev
Log:
CAMEL-421: Polished the pom.xml to use correct dependencies
Modified:
activemq/camel/trunk/components/camel-stream/pom.xml
Modified: activemq/camel/trunk/components/camel-stream/pom.xml
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-stream/pom.xml?rev=669390&r1=669389&r2=669390&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-stream/pom.xml (original)
+++ activemq/camel/trunk/components/camel-stream/pom.xml Wed Jun 18 22:10:30
2008
@@ -18,54 +18,55 @@
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.apache.camel</groupId>
- <artifactId>camel-parent</artifactId>
- <version>1.4-SNAPSHOT</version>
- </parent>
-
- <groupId>org.apache.camel</groupId>
- <artifactId>camel-stream</artifactId>
- <packaging>bundle</packaging>
- <name>Camel :: Stream</name>
- <description>Camel Stream (System.in, System.out, System.err)
support</description>
-
- <properties>
-
<camel.osgi.export.pkg>org.apache.camel.component.stream.*</camel.osgi.export.pkg>
- </properties>
- <dependencies>
-
- <dependency>
- <groupId>org.apache.camel</groupId>
- <artifactId>camel-core</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.apache.camel</groupId>
- <artifactId>camel-core</artifactId>
- <type>test-jar</type>
- </dependency>
-
- <dependency>
- <groupId>org.apache.camel</groupId>
- <artifactId>camel-jms</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.apache.camel</groupId>
- <artifactId>camel-spring</artifactId>
- <type>test-jar</type>
- </dependency>
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>camel-parent</artifactId>
+ <version>1.4-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.apache.camel</groupId>
+ <artifactId>camel-stream</artifactId>
+ <packaging>bundle</packaging>
+ <name>Camel :: Stream</name>
+ <description>Camel Stream (System.in, System.out, System.err)
support</description>
+
+ <properties>
+
<camel.osgi.export.pkg>org.apache.camel.component.stream.*</camel.osgi.export.pkg>
+ </properties>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>camel-core</artifactId>
+ </dependency>
+
+ <!-- testing -->
+ <dependency>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>camel-core</artifactId>
+ <type>test-jar</type>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
</project>