groups property

Map<String, List<String>> groups

A list of group names used to group injectables. The values of each group are the class name regex patterns (case sensitive)

The priority value for each group is decremented by 10 for each group, starting at 50.

e.g.

groups:
 group1: # Priority = 50
  - ^A
  - ^B
 group2: # Priority = 40
  - ^C
  - ^D

Implementation

Map<String, List<String>> get groups;