简体   繁体   中英

ERROR The specified file 'helidon-quickstart-se.jar' not exists in helidon se project

I am very new to Helidon and have been trying to generate a Helidon project using the quickstart archetype, but it seems to be not working at all for me. can you please help me out. Thanks in advance.

what I have tried is as follows: mvn -U archetype:generate "-DinteractiveMode=false" "-DarchetypeGroupId=io.helidon.archetypes" "-DarchetypeArtifactId=helidon-quickstart-se" "-DarchetypeVersion=1.3.0" "-DgroupId=io.helidon.examples" "-DartifactId=helidon-quickstart-se" "-Dpackage=io.helidon.examples.quickstart.se" "-DgeneratePom=true"

and the error that I am getting is as follows: error message

I figured out that the 1.3.0 version of helidon-quickstart-se jar was not present in my central repository, so I had to install the particular jar in my central repository using the command: mvn install:install-file -Dfile=helidon-quickstart-se.jar -DgroupId=io.helidon.archetypes -DartifactId=helidon-quickstart-se -Dversion=1.3.0 -Dpackaging=jar

Then it worked for me. Hope this helps someone who is stuck with the same issue.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM