I've been trying to follow the instructions here
https://wiki.jenkins-ci.org/display/JENKINS/Plugin+tutorial#Plugintutorial-SettingUpEnvironment but have been running into a lot of mental hurdles.
I've got jenkins installed from the debian repo (/var/lib/jenkins).
I've got my source code for the plugin checked out in (/home/myname/my-jenkins-plugin).
The plugin runs successfully if I run "mvn install", copy the hpi file from ./target over to /var/lib/jenkins/plugins, and restart jenkins. However, debugging this was is enormously slow, and I'm trying to setup a better development environment.
In netbeans (8.0.2) I've loaded the project file, and the maven sources were downloaded.
The tutorial now says
NetBeans 6.7+ users can just hit Debug.
but the debug tab is not working. Also, I dont understand how a netbeans project that only has my plugin in it is supposed to know how to kick off the instance of jenkins.
I've also tried the mvnDebug command and listening on 8000 in netbeans with no success.
What am I doing wrong?
Thank you!