Am 19.03.12 18:49 schrieb "soumya_sd" unter <soumya...@yahoo.com>:
>@Babak - Thanks. I've looked at that Tutorial before. I'm new to both >Drools >as well as Camel. But I'm learning. Hopefully, I can write my complete >experience once I'm successfully in making this all work together. So for sure you know much more about that Camel component than me :-) > >Just another question regarding removing the TypeCoverter file from the >jar >automatically. Can anyone suggest a easy way to tell maven to remove that >file while building the sources or do I've to do it manually. Yes, one possible way would be to instruct maven-jar-plugin for that, if you're building the drools-camel jar by yourself using [1] then simply add your own configuration for that purpose, something like: <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <excludes> <exclude>**/TypeConverter</exclude> </excludes> </configuration> </plugin> </plugins> </build> [1] https://github.com/droolsjbpm/droolsjbpm-integration/blob/master/drools-cam el/pom.xml Babak > >thanks again to everyone for all their help and pointers. > >-- >View this message in context: >http://camel.465427.n5.nabble.com/org-apache-camel-RuntimeCamelException-o >rg-apache-camel-TypeConverterLoaderException-Failed-to-load--tp5575757p557 >7795.html >Sent from the Camel - Users mailing list archive at Nabble.com.