helidon icon indicating copy to clipboard operation
helidon copied to clipboard

Docs: Helidon version is wrong in 3.0.0 documentation

Open barchetta opened this issue 2 years ago • 2 comments

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)

barchetta avatar Aug 08 '22 17:08 barchetta

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

barchetta avatar Aug 08 '22 17:08 barchetta

Need to update release.sh to update version in docs/includes/attributes.adoc

barchetta avatar Aug 08 '22 17:08 barchetta