NeoGradle
NeoGradle copied to clipboard
Allow customisation of generated IDE run names
I'm working on porting a multi-mod workspace to NG7 with the following structure:
- (root project)
- hephaestus
- core (standard Java library, doesn't interface with MC)
- mod (FG7, a standard Neo mod)
- neoforge (standard Java library, containing FML-specific code)
- survival-reborn (FG7, a standard Neo mod)
- hephaestus
Unfortunately, the runs that NG7 generates by default don't have the best names (particularly for :hephaestus:mod):
Ideally, I'd like to be able to do something like this to configure the name of the generated name:
runs {
configureEach {
ideaApplication "${project.path}: ${it.name}"
}
}
Though I was looking through the source code and it seems to be hardcoded, so I'm not sure the feasibility of this.