-
I have the necessity to launch an Eclipse process via a custom Maven plugin, to emulate a command line like:
I'd like to avoid interacting with the bare JDK-provided process classes if possible, and was wondering, is using the Tycho |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes |
Beta Was this translation helpful? Give feedback.
Yes
EclipseRunMojo
emulates something like this (and has a special constructor for extenders ... but I plan to improve that to better make it a component), but you can't "just" pass a eclipse install there. So if you really want to "execute eclipse" thenProcessBuilder
is most likley what you want, because a seperate process is much more separated (e.g. has own process memory and alike)