Cross-IDE standard for "Run Configurations"

2022-03-04 Thread Steve Hannah
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.

Re: Build parent module in nbactions.xml

2021-02-18 Thread Steve Hannah
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

Build parent module in nbactions.xml

2021-02-18 Thread Steve Hannah
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

Fwd: Run goal in parent or sibling maven project

2021-01-11 Thread Steve Hannah
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