How can we read comma seprated file in using camel... i am getting error in
my pom.xml file that is shown below..

pom.xml

<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>

        
        <groupId>org.apache.camel</groupId>
        <artifactId>examples</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <relativePath>..</relativePath>
        
        <dependencies>
                
                
                <dependency>
                        <groupId>junit</groupId>
                        <artifactId>junit</artifactId>
                        <version>4.8.2</version>
                        <type>jar</type>
                        <scope>test</scope>
                </dependency>
                <dependency>
                        <groupId>org.apache.camel</groupId>
                        <artifactId>camel</artifactId>
                        <version>2.7.2</version>
                        <type>pom</type>
                        <scope>compile</scope>
                </dependency>
                <dependency>
                        <groupId>org.apache.camel</groupId>
                        <artifactId>camel-bindy</artifactId>
                        <version>2.7.2</version>
                        <scope>compile</scope>
                </dependency>
                <dependency>
                        <groupId>org.apache.camel</groupId>
                        <artifactId>camel-csv</artifactId>
                        <version>2.7.2</version>
                        <scope>compile</scope>
                </dependency>
                <dependency>
                        <groupId>org.slf4j</groupId>
                        <artifactId>slf4j-simple</artifactId>
                        <version>1.6.1</version>
                        <type>jar</type>
                        <scope>compile</scope>
                </dependency>
                <dependency>
                        <groupId>org.apache.camel</groupId>
                        <artifactId>camel-test</artifactId>
                        <version>2.7.2</version>
                        <scope>test</scope>
                </dependency>
        </dependencies>
</project>

and error is like..

missing artifact com.sun:tools:jar:1.5.0 




--
View this message in context: 
http://camel.465427.n5.nabble.com/Camel-CSV-file-reading-tp5733390.html
Sent from the Camel Development mailing list archive at Nabble.com.

Reply via email to