Reputation: 2230
I am new to Fuse. I want to develop FTP using camel component. I am using Maven projects and added all camel related jars in dependency. I noticed that JBoss FUSE server also have all camel jars. while packing WAR, all dependency jar will go into WAR's lib folder. if I deploy WAR in FUSE server, what will happen?
Upvotes: 0
Views: 287
Reputation: 2163
You should set any maven project dependency that Fuse already includes to dependency scope provided
. This will put them on the compiler class path, but won't include them in the produced War/Jar file.
Upvotes: 1