excludeGlob property

List<String> excludeGlob
final

glob patterns of packages whose dependencies should not be loaded

Search starts at repository root.

Example project layout:

repo-root
├── packages
│   ├── package1
│   ├── package2
│   └── circle
└── third_party
    ├── circle
    │   ├── packageA
    │   └── packageB
    └── square
  • Use packages/package1/** to exclude only packages/package1.
  • Use **/circle/** to exclude packages/circle as well as third_party/circle/packageA and third_party/circle/packageB.

Implementation

final List<String> excludeGlob;