apache / apache/maven-help-plugin
Using Maven logging for `help:active-profiles` output
- Dominant language
- Java
- Stars
- 29
- Forks
- 42
- Avg merge
- 1d 12h
- Merged PRs (30d)
- 6
Description
### New feature, improvement proposal
Current:
```
[INFO] --- help:3.5.1:active-profiles (default) @ my-project ---
[INFO]
Active Profiles for Project 'acme:my-project:jar:1.0':
The following profiles are active:
- default-repositories (source: external)
- ... [FURTHER OUTPUT ELIDED]
```
I'd rather this plugin writes to stdout using Maven's own logging facility, and ideally with concision and no repetition:
```
[INFO] --- help:3.5.1:active-profiles (default) @ my-project ---
[INFO] Active Profiles for Project 'acme:my-project:jar:1.0':
[INFO] - default-repositories (source: external)
[INFO] ... [FURTHER OUTPUT ELIDED]
[INFO]
```
Contributor guide
No contributing guide indexed for this repository
Research direction
Start at the help:active-profiles goal and trace how its output is emitted. Compare the current and proposed examples, then verify that the goal uses Maven's logging format with concise, non-repeated lines and that its output remains complete.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java
- Domain
- build-system, tooling
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 48/100