helidon
helidon copied to clipboard
Docs: Helidon version is wrong in 3.0.0 documentation
Environment Details
- Helidon Version: 3.0.0
Problem Description
The 3.0.0 documentation has the Helidon version as 3.0.0-SNAPSHOT
you can see this in the quickstarts: https://helidon.io/docs/3.0.0/#/mp/guides/quickstart
The end effect is that if you copy/paste the maven archetype command it fails.
The version is specified in docs/includes/attributes.adoc
. Apparently this is not updated by the release script (etc/scripts/release.sh --version=N.N.N update_version
)
The work-around is to use the correct version:
mvn -U archetype:generate -DinteractiveMode=false \
-DarchetypeGroupId=io.helidon.archetypes \
-DarchetypeArtifactId=helidon-quickstart-mp \
-DarchetypeVersion=3.0.0 \
-DgroupId=io.helidon.examples \
-DartifactId=helidon-quickstart-mp \
-Dpackage=io.helidon.examples.quickstart.mp
Need to update release.sh
to update version in docs/includes/attributes.adoc