giri
giri

Reputation: 27199

Eclipse deployment assemble cannot find entry for project

I converted X normal java project to maven project. Earier this X project was used in the deployment assemble of Y project, now when I am the X project into the deployment assembly of Y project , I am getting can not find entry for X project. enter image description here

Upvotes: 0

Views: 1437

Answers (2)

Markus Pscheidt
Markus Pscheidt

Reputation: 7331

I had to convert the dependent project into faceted form, in Project properties => Project Facets.

Upvotes: 0

haba713
haba713

Reputation: 2677

Don't try to add it as "Project" but add it as "Archives from Workspace":

  1. Remove project "IBEJB" from Deployment Assembly.
  2. Click "Add".
  3. Choose "Archives from Workspace".
  4. Click "Add".
  5. Choose IBEJB/target/IBEJB-*.jar.
  6. Click "Finish".

enter image description here

Upvotes: 2

Related Questions