How Do I “open folder in explorer” in Netbeans PHP

You can use Path Tools plugin (you have to download it from the site and install by manually adding it in downloaded section in NetBeans plugin menu) There is also more recent plugin QuickOpener for newer NetBeans versions. Other nice plugin that offers this functionality is CoolEditorActions, available through update center in Infrastuture category.

Adding external JAR to Maven project in NetBeans

From the NetBeans forum: Open the Projects tab. Right-click on Dependencies. Select Add dependency. Set groupId to: group.id (can be anything) Set artifactId to: artifact.id (can be anything) Set version to: 1.0 (can be anything) Click Add to continue. Dependency is added to pom.xml and appears under the Libraries node of Maven project. Continue: Expand … Read more