Avalanchis
Avalanchis

Reputation: 4579

Missing Plug-In When Opening Project in NetBeans

I've inherited a java project that appears to have been developed using the NetBeans IDE.

It contains a nbproject subdirectory.

When I try to open the project using NetBeans 6.9 it reports the following error in the Project Name text box:

<unrecognized project; missing plug-in?>

How can I determine which plug-in it is looking for?

Upvotes: 21

Views: 30492

Answers (4)

Mchl
Mchl

Reputation: 62395

See what's the value of <type> in project.xml. In your case it is <type>org.netbeans.modules.web.project</type>. When you look up this project type on the internet you will find out that you should try installing 'Java Web and EE' plugin.

Upvotes: 29

Mohamed
Mohamed

Reputation: 89

I have the same problem when i tried to open a symfony project ! Fortunetely, i solved this problem in Netbeans : tools > plugins then i installed php

Good luck ;)

Upvotes: 2

Toby Fernsler
Toby Fernsler

Reputation: 81

To avoid this problem in the future, enable a library folder for the netbeans project (preferences>libraries>Libraries Folder>browse..: http://netbeans.org/kb/docs/java/project-setup.html#projects-shared-libraries

Upvotes: 0

Charles Hand
Charles Hand

Reputation: 11

Since Netbeans doesn't leave a record of what plugins it used to create a project, the only thing you can do is install all the plugins. This has been a bug in netbeans for ten years.

Upvotes: 1

Related Questions