-
I am working on an m2eclipse project configurator[1] eclipse plugin for PMD. This eclipse plugin recognizes that you have configured your Maven project with the maven-pmd-plugin and configures PMD in eclipse for the project in accordance with the maven configuration.
As of PMD eclipse 3.2.5, I can no longer programmatically interact with the plugin as all the of classes are now hidden...
2008-10-16 13:44:30 UTC in PMD
-
I would like to create an m2eclipse project configurator[1] that automatically configures the eclipse project with PMD based on the Maven pom pmd configuration. I was able to do this with the 3.2.4 release since my eclipse plugin could depend on the ui & core pmd eclipse plugins. As of the recent 3.2.5 release of pmd-eclipse, I can no longer reference any classes out of the plugin as they...
2008-10-16 01:10:24 UTC in PMD eclipse plugin
-
I'd like to start a wrapper application specifying additional vm parameters and application arguments to the process on the command line.
Something like this :
app -Dlog.level=DEBUG start -file path/to/file.txt
The syntax would be :
[jvm argument]... (start|console) [argument]...
2008-08-19 18:54:06 UTC in Java Service Wrapper
-
In addition to start / stop, it would be very useful to include a debug directive that would launch a jvm in debug mode.
To implement, you could default the debug parameters to -Xdebug -Xrunjdwp:transport=dt_socket,address=0,server=y,suspend=n which would select a random port for socket debugging and start the process. Users could override the debug configuration to whatever they like in...
2008-08-19 18:52:08 UTC in Java Service Wrapper