Gnana
Gnana

Reputation: 2230

JBoss FUSE Dependency

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?

  1. Don't I need to add jar in lib?
  2. Which jar will be used while application runs? ( FUSE jars or Lib jars )
  3. Need details about camel dependency in POM.xml
  4. It will be helpful if I get sample projects with POM.xml

Upvotes: 0

Views: 287

Answers (1)

Geert Schuring
Geert Schuring

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

Related Questions