sebnukem
sebnukem

Reputation: 8303

Structured Maven profiles in IntelliJ IDEA

We have a company-created Maven plugin that requires many (40+) defined profiles.

All those profiles are alphabetically listed in the Profiles folder in the Maven tab in IntelliJ IDEA.

Is it possible to create subfolders in the Profiles folder?

Instead of seeing:

V Profiles
  [ ] profile_one
  [ ] profile_two
  [ ] profile_three
      :
  [ ] profile_forty

I'd like to have:

V Profiles
  > Profile_subfolder_A
  V Profile_subfolder_B
    [ ] profile_five
    [ ] profile_six
  > Profile_subfolder_C
      :

Upvotes: 0

Views: 68

Answers (1)

Andrey
Andrey

Reputation: 16381

There is no such groupping in IDE. There are related request you can vote for: IDEA-142807, IDEA-81772.

Upvotes: 1

Related Questions