Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
According to
http://opensource.55minutes.com/trac/ticket/75
the repository
http://wicketstuff.org/maven/repository
is no longer being maintained.
At the bottom of the page
http://wicket.apache.org/start/download.html
there is still a reference to the old repository.
The contents of the code block after
"There's also a Maven 2 repository providing SNAPSHOTs available here:"
could be replaced with:
<repositories>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>apache.snapshots</id>
<name>Apache Snapshot Repository</name>
<url>https://repository.apache.org/content/groups/snapshots</url>
<layout>default</layout>
</repository>
</repositories>
<dependencies>
[...]
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket</artifactId>
<!-- <version>1.4-20110713.000152-600</version> -->
<version>1.4-SNAPSHOT</version>
</dependency>
[...]
</dependencies>