Discussion:
quickstart instructions cause - archetypeCatalog 'http://wicket.apache.org' is not supported anymore
Simon B
2018-09-21 13:09:04 UTC
Permalink
Hi I'm trying to get a new Wicket project going using the latest version with
maven

I get the following error when running the recommended command:

$] mvn archetype:generate -DarchetypeCatalog=https://wicket.apache.org -e


archetypeCatalog 'http://wicket.apache.org' is not supported anymore




--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

---------------------------------------------------------------------
To unsubscribe, e-mail: users-***@wicket.apache.org
For additional commands, e-mail: users-***@wicket.apache.org
Andrea Del Bene
2018-09-21 14:03:09 UTC
Permalink
Hi Simon,

I'm afraid we have left a quite outdated command on quickstart page. If
you want to generate a quickstart project simply use the command you get in
the form. If you want to generate the project in interactive mode just
remove parameter up to the archetype version. For example:

mvn archetype:generate -DarchetypeGroupId=org.apache.wicket
-DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=8.1.0

I will fix the quickstart page asap.
Post by Simon B
Hi I'm trying to get a new Wicket project going using the latest version with
maven
$] mvn archetype:generate -DarchetypeCatalog=https://wicket.apache.org -e
archetypeCatalog 'http://wicket.apache.org' is not supported anymore
--
http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
---------------------------------------------------------------------
--
Andrea Del Bene.
Apache Wicket committer.
Maxim Solodovnik
2018-09-21 14:54:20 UTC
Permalink
Hello Andrea,

It seems generating quickstart with SNAPSHOT wicket version (which
wasn't built locally) will not work :(

mvn archetype:generate -DarchetypeGroupId=org.apache.wicket
-DarchetypeArtifactId=wicket-archetype-quickstart
-DarchetypeVersion=8.2.0-SNAPSHOT -DgroupId=com.mycompany
-DartifactId=myproject
-DarchetypeRepository=https://repository.apache.org/content/repositories/snapshots/
-DinteractiveMode=false

[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-archetype-plugin:3.0.1:generate
(default-cli) on project standalone-pom: The desired archetype does
not exist (org.apache.wicket:wicket-archetype-quickstart:8.2.0-SNAPSHOT)
-> [Help 1]

mvn -version
Apache Maven 3.5.3 (3383c37e1f9e9b3bc3df5050c29c8aff9f295297;
2018-02-25T02:49:05+07:00)
Maven home: /opt/maven
Java version: 1.8.0_181, vendor: Oracle Corporation

Maybe `wicket-archetype-quickstart` can be modified to get
wicket-version as the parameter?
This will solve the issue on latest Maven ....
Post by Andrea Del Bene
Hi Simon,
I'm afraid we have left a quite outdated command on quickstart page. If
you want to generate a quickstart project simply use the command you get in
the form. If you want to generate the project in interactive mode just
mvn archetype:generate -DarchetypeGroupId=org.apache.wicket
-DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=8.1.0
I will fix the quickstart page asap.
Post by Simon B
Hi I'm trying to get a new Wicket project going using the latest version with
maven
$] mvn archetype:generate -DarchetypeCatalog=https://wicket.apache.org -e
archetypeCatalog 'http://wicket.apache.org' is not supported anymore
--
http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
---------------------------------------------------------------------
--
Andrea Del Bene.
Apache Wicket committer.
--
WBR
Maxim aka solomax

---------------------------------------------------------------------
To unsubscribe, e-mail: users-***@wicket.apache.org
For additional commands, e-mail: users-***@wicket.apache.org
Andrea Del Bene
2018-09-21 19:03:39 UTC
Permalink
Ouch....! I just discovered that from version 2.5 archetype plugin
removed support for archetypeRepository parameter. We should add a note
about this below the form.

https://stackoverflow.com/questions/43570594/error-executing-maven-archetype-generate-command-to-create-a-opndaylight-project
Post by Maxim Solodovnik
Hello Andrea,
It seems generating quickstart with SNAPSHOT wicket version (which
wasn't built locally) will not work :(
mvn archetype:generate -DarchetypeGroupId=org.apache.wicket
-DarchetypeArtifactId=wicket-archetype-quickstart
-DarchetypeVersion=8.2.0-SNAPSHOT -DgroupId=com.mycompany
-DartifactId=myproject
-DarchetypeRepository=https://repository.apache.org/content/repositories/snapshots/
-DinteractiveMode=false
[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-archetype-plugin:3.0.1:generate
(default-cli) on project standalone-pom: The desired archetype does
not exist (org.apache.wicket:wicket-archetype-quickstart:8.2.0-SNAPSHOT)
-> [Help 1]
mvn -version
Apache Maven 3.5.3 (3383c37e1f9e9b3bc3df5050c29c8aff9f295297;
2018-02-25T02:49:05+07:00)
Maven home: /opt/maven
Java version: 1.8.0_181, vendor: Oracle Corporation
Maybe `wicket-archetype-quickstart` can be modified to get
wicket-version as the parameter?
This will solve the issue on latest Maven ....
Post by Andrea Del Bene
Hi Simon,
I'm afraid we have left a quite outdated command on quickstart page. If
you want to generate a quickstart project simply use the command you get in
the form. If you want to generate the project in interactive mode just
mvn archetype:generate -DarchetypeGroupId=org.apache.wicket
-DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=8.1.0
I will fix the quickstart page asap.
Post by Simon B
Hi I'm trying to get a new Wicket project going using the latest version with
maven
$] mvn archetype:generate -DarchetypeCatalog=https://wicket.apache.org -e
archetypeCatalog 'http://wicket.apache.org' is not supported anymore
--
http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
---------------------------------------------------------------------
--
Andrea Del Bene.
Apache Wicket committer.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-***@wicket.apache.org
For additional commands, e-mail: users-***@wicket.apache.org
Maxim Solodovnik
2018-09-22 03:50:40 UTC
Permalink
Version prior to 2.5 might be provided for snapshots ....

WBR, Maxim
(from mobile, sorry for the typos)
Post by Andrea Del Bene
Ouch....! I just discovered that from version 2.5 archetype plugin
removed support for archetypeRepository parameter. We should add a note
about this below the form.
https://stackoverflow.com/questions/43570594/error-executing-maven-archetype-generate-command-to-create-a-opndaylight-project
Post by Maxim Solodovnik
Hello Andrea,
It seems generating quickstart with SNAPSHOT wicket version (which
wasn't built locally) will not work :(
mvn archetype:generate -DarchetypeGroupId=org.apache.wicket
-DarchetypeArtifactId=wicket-archetype-quickstart
-DarchetypeVersion=8.2.0-SNAPSHOT -DgroupId=com.mycompany
-DartifactId=myproject
-DarchetypeRepository=
https://repository.apache.org/content/repositories/snapshots/
Post by Maxim Solodovnik
-DinteractiveMode=false
[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-archetype-plugin:3.0.1:generate
(default-cli) on project standalone-pom: The desired archetype does
not exist (org.apache.wicket:wicket-archetype-quickstart:8.2.0-SNAPSHOT)
-> [Help 1]
mvn -version
Apache Maven 3.5.3 (3383c37e1f9e9b3bc3df5050c29c8aff9f295297;
2018-02-25T02:49:05+07:00)
Maven home: /opt/maven
Java version: 1.8.0_181, vendor: Oracle Corporation
Maybe `wicket-archetype-quickstart` can be modified to get
wicket-version as the parameter?
This will solve the issue on latest Maven ....
Post by Andrea Del Bene
Hi Simon,
I'm afraid we have left a quite outdated command on quickstart page. If
you want to generate a quickstart project simply use the command you
get in
Post by Maxim Solodovnik
Post by Andrea Del Bene
the form. If you want to generate the project in interactive mode just
mvn archetype:generate -DarchetypeGroupId=org.apache.wicket
-DarchetypeArtifactId=wicket-archetype-quickstart
-DarchetypeVersion=8.1.0
Post by Maxim Solodovnik
Post by Andrea Del Bene
I will fix the quickstart page asap.
Post by Simon B
Hi I'm trying to get a new Wicket project going using the latest
version
Post by Maxim Solodovnik
Post by Andrea Del Bene
Post by Simon B
with
maven
$] mvn archetype:generate -DarchetypeCatalog=https://wicket.apache.org
-e
Post by Maxim Solodovnik
Post by Andrea Del Bene
Post by Simon B
archetypeCatalog 'http://wicket.apache.org' is not supported anymore
--
http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
---------------------------------------------------------------------
--
Andrea Del Bene.
Apache Wicket committer.
---------------------------------------------------------------------
Andrea Del Bene
2018-09-22 12:56:10 UTC
Permalink
Should be ok now.
Post by Maxim Solodovnik
Version prior to 2.5 might be provided for snapshots ....
WBR, Maxim
(from mobile, sorry for the typos)
Post by Andrea Del Bene
Ouch....! I just discovered that from version 2.5 archetype plugin
removed support for archetypeRepository parameter. We should add a note
about this below the form.
https://stackoverflow.com/questions/43570594/error-executing-maven-archetype-generate-command-to-create-a-opndaylight-project
Post by Maxim Solodovnik
Hello Andrea,
It seems generating quickstart with SNAPSHOT wicket version (which
wasn't built locally) will not work :(
mvn archetype:generate -DarchetypeGroupId=org.apache.wicket
-DarchetypeArtifactId=wicket-archetype-quickstart
-DarchetypeVersion=8.2.0-SNAPSHOT -DgroupId=com.mycompany
-DartifactId=myproject
-DarchetypeRepository=
https://repository.apache.org/content/repositories/snapshots/
Post by Maxim Solodovnik
-DinteractiveMode=false
[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-archetype-plugin:3.0.1:generate
(default-cli) on project standalone-pom: The desired archetype does
not exist (org.apache.wicket:wicket-archetype-quickstart:8.2.0-SNAPSHOT)
-> [Help 1]
mvn -version
Apache Maven 3.5.3 (3383c37e1f9e9b3bc3df5050c29c8aff9f295297;
2018-02-25T02:49:05+07:00)
Maven home: /opt/maven
Java version: 1.8.0_181, vendor: Oracle Corporation
Maybe `wicket-archetype-quickstart` can be modified to get
wicket-version as the parameter?
This will solve the issue on latest Maven ....
Post by Andrea Del Bene
Hi Simon,
I'm afraid we have left a quite outdated command on quickstart page. If
you want to generate a quickstart project simply use the command you
get in
Post by Maxim Solodovnik
Post by Andrea Del Bene
the form. If you want to generate the project in interactive mode just
mvn archetype:generate -DarchetypeGroupId=org.apache.wicket
-DarchetypeArtifactId=wicket-archetype-quickstart
-DarchetypeVersion=8.1.0
Post by Maxim Solodovnik
Post by Andrea Del Bene
I will fix the quickstart page asap.
Post by Simon B
Hi I'm trying to get a new Wicket project going using the latest
version
Post by Maxim Solodovnik
Post by Andrea Del Bene
Post by Simon B
with
maven
$] mvn archetype:generate -DarchetypeCatalog=https://wicket.apache.org
-e
Post by Maxim Solodovnik
Post by Andrea Del Bene
Post by Simon B
archetypeCatalog 'http://wicket.apache.org' is not supported anymore
--
http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
---------------------------------------------------------------------
--
Andrea Del Bene.
Apache Wicket committer.
---------------------------------------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: users-***@wicket.apache.org
For additional commands, e-mail: users-***@wicket.apache.org
Maxim Solodovnik
2018-09-23 02:25:56 UTC
Permalink
Great work :)
Post by Andrea Del Bene
Should be ok now.
Post by Maxim Solodovnik
Version prior to 2.5 might be provided for snapshots ....
WBR, Maxim
(from mobile, sorry for the typos)
Post by Andrea Del Bene
Ouch....! I just discovered that from version 2.5 archetype plugin
removed support for archetypeRepository parameter. We should add a note
about this below the form.
https://stackoverflow.com/questions/43570594/error-executing-maven-archetype-generate-command-to-create-a-opndaylight-project
Post by Maxim Solodovnik
Post by Andrea Del Bene
Post by Maxim Solodovnik
Hello Andrea,
It seems generating quickstart with SNAPSHOT wicket version (which
wasn't built locally) will not work :(
mvn archetype:generate -DarchetypeGroupId=org.apache.wicket
-DarchetypeArtifactId=wicket-archetype-quickstart
-DarchetypeVersion=8.2.0-SNAPSHOT -DgroupId=com.mycompany
-DartifactId=myproject
-DarchetypeRepository=
https://repository.apache.org/content/repositories/snapshots/
Post by Maxim Solodovnik
-DinteractiveMode=false
[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-archetype-plugin:3.0.1:generate
(default-cli) on project standalone-pom: The desired archetype does
not exist
(org.apache.wicket:wicket-archetype-quickstart:8.2.0-SNAPSHOT)
Post by Maxim Solodovnik
Post by Andrea Del Bene
Post by Maxim Solodovnik
-> [Help 1]
mvn -version
Apache Maven 3.5.3 (3383c37e1f9e9b3bc3df5050c29c8aff9f295297;
2018-02-25T02:49:05+07:00)
Maven home: /opt/maven
Java version: 1.8.0_181, vendor: Oracle Corporation
Maybe `wicket-archetype-quickstart` can be modified to get
wicket-version as the parameter?
This will solve the issue on latest Maven ....
Post by Andrea Del Bene
Hi Simon,
I'm afraid we have left a quite outdated command on quickstart page.
If
Post by Maxim Solodovnik
Post by Andrea Del Bene
Post by Maxim Solodovnik
Post by Andrea Del Bene
you want to generate a quickstart project simply use the command you
get in
Post by Maxim Solodovnik
Post by Andrea Del Bene
the form. If you want to generate the project in interactive mode just
mvn archetype:generate -DarchetypeGroupId=org.apache.wicket
-DarchetypeArtifactId=wicket-archetype-quickstart
-DarchetypeVersion=8.1.0
Post by Maxim Solodovnik
Post by Andrea Del Bene
I will fix the quickstart page asap.
Post by Simon B
Hi I'm trying to get a new Wicket project going using the latest
version
Post by Maxim Solodovnik
Post by Andrea Del Bene
Post by Simon B
with
maven
$] mvn archetype:generate -DarchetypeCatalog=
https://wicket.apache.org
Post by Maxim Solodovnik
Post by Andrea Del Bene
-e
Post by Maxim Solodovnik
Post by Andrea Del Bene
Post by Simon B
archetypeCatalog 'http://wicket.apache.org' is not supported anymore
--
http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
---------------------------------------------------------------------
--
Andrea Del Bene.
Apache Wicket committer.
---------------------------------------------------------------------
---------------------------------------------------------------------
--
WBR
Maxim aka solomax
Simon B
2018-09-24 07:53:25 UTC
Permalink
Great, thank you!

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

---------------------------------------------------------------------
To unsubscribe, e-mail: users-***@wicket.apache.org
For additional commands, e-mail: users-***@wicket.apache.org

Loading...