For users: introduction, instructions, and tutorials
(this page is for developing and maintaining this project)
Working with archetype snapshots require following sections to be present
in your .m2/settings.xml
:
<settings>
...
<profiles>
<profile>
<id>ossrh</id>
<repositories>
<repository>
<!-- id expected by maven-archetype-plugin to avoid fetching from everywhere -->
<id>archetype</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
<checksumPolicy>warn</checksumPolicy>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>ossrh</activeProfile>
</activeProfiles>
</settings>