Maven makes some things much easier by standardizing many of the build
settings in a way that is IDE agnostic. However, every IDE seems to
provide its own proprietary "Actions" configuration for defining the
"Actions" or "Tasks" that can be run on a project. E.g. "Run", "Debug",
"Build Jar", etc.
ke —projects myprojectChild".
>
> > On 18 Feb 2021, at 15:54, Steve Hannah wrote:
> >
> > I have a multi-module maven project. I'm trying to set up nbactions.xml
> so that when I'm working on a file inside a child module, if I press "Run",
> it wi
I have a multi-module maven project. I'm trying to set up nbactions.xml so
that when I'm working on a file inside a child module, if I press "Run", it
will execute a goal on the parent module.
I've been trying every back-handed way I can to inject something like the
"-f ../pom.xml" into the mvn c
I have a multi-module maven project with layout:
parent-project
- main-project
- javase-project
javase-project depends on main-project, and running and debugging the
project is done in the javase-project.
But most of the time I'm working in the "main-project", so I'd like to
press "r