NeoGradle icon indicating copy to clipboard operation
NeoGradle copied to clipboard

Allow customisation of generated IDE run names

Open FiniteReality opened this issue 2 years ago • 0 comments

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)

Unfortunately, the runs that NG7 generates by default don't have the best names (particularly for :hephaestus:mod): Screenshot_20231101_222703 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.

FiniteReality avatar Nov 01 '23 22:11 FiniteReality