The error you are seeing is probably because you don't have your JAVA_HOME
path set up correctly.

See [1] for further details.

[1] http://stackoverflow.com/questions/5756299/maven-3-artifact-problem

Best,

Christian Müller
-----------------

Software Integration Specialist

Apache Camel committer: https://camel.apache.org/team
V.P. Apache Camel: https://www.apache.org/foundation/
Apache Member: https://www.apache.org/foundation/members.html

https://www.linkedin.com/pub/christian-mueller/11/551/642


On Wed, May 29, 2013 at 9:06 AM, milan777 <milan79pa...@gmail.com> wrote:

> 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