On Mar 14, 2013, at 7:25 AM, Martin Grigorov wrote:
> On Thu, Mar 14, 2013 at 12:49 PM, Mark Thomas <[email protected]> wrote:
>
>>>
>> https://repository.apache.org/content/repositories/snapshots/org/apache/tomcat/
>>>>
>>>> Mark
>>>
>>> Sweet! Thanks! So will I need to add https://repository.apache.org/ as
>>> a custom repository in my POM, or will Maven Central eventually pick up
>>> the change?
>>
>
> Yes, you will need to add this repository to your pom.xml.
>
> See
> https://github.com/apache/wicket/blob/master/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml#L173
> This is the pom.xml we use for Apache Wicket archetype for -SNAPSHOT
> versions.
>
> When Tomcat developer release the modules they will go to
> https://repository.apache.org/content/repositories/RELEASES/org/apache/tomcat/<https://repository.apache.org/content/repositories/releases/org/apache/tomcat/>
> and this will be sync-ed to Maven central repository.
>
>
>>
>> I thought central did pick these up but a re-read of the docs says not.
>>
>> Mark
Yea, I figured out after sending this email that I just needed the following in
my POM:
<repositories>
<repository>
<id>apache-snapshots</id>
<name>Apache Snapshots Repository</name>
<url>https://repository.apache.org/content/repositories/snapshots</url>
<layout>default</layout>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]