You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the helidon-cli-maven-plugin is configured to have a life-cycle for the full build that does not include compiler:compile then the dev-loop fails with:
loop failed helidon-cli-maven-plugin must be configured as an extension
TLDR: the dev-loop relies on a mechanism (MavenLifecycleParticipant) that only works within Maven extensions. It uses the event of compiler:compile (see MavenProjectConfigCollector) to determine that the helidon-cli-maven-plugin is configured as an extension.
Version: 4.0.2
If the
helidon-cli-maven-plugin
is configured to have a life-cycle for the full build that does not includecompiler:compile
then the dev-loop fails with:See MavenProjectSupplier.
TLDR: the dev-loop relies on a mechanism (
MavenLifecycleParticipant
) that only works within Maven extensions. It uses the event ofcompiler:compile
(see MavenProjectConfigCollector) to determine that thehelidon-cli-maven-plugin
is configured as an extension.Steps to reproduce:
Configure the
helidon-cli-maven-plugin
like this:Run
helidon dev
.Possible ways to fix this:
compiler:compile
.The text was updated successfully, but these errors were encountered: