[CI] - Platform Snapshot Deployment
Author: gsmetCreated Sep 4, 2023Updated Sep 18, 2026
Labelsarea/infra
This issue reports the status of the daily cron job that runs deploys Quarkus Platform snapshot artifacts to https://s01.oss.sonatype.org/content/repositories/snapshots/io/quarkus/platform.
Don't close this issue manually. This issue will be closed when the build gets fixed. It will be re-opened if it fails again later. You can subscribe to be notified of the status.
To use the snapshots, add the following repository to your pom.xml file or Gradle project:
<repository>
<id>maven-snapshots</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
<layout>default</layout>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>Use snapshots are your own risk. Because of the Maven resolution mechanism, they may be 24h old (or even more). If you have issues with snapshots, try to build a fresh version of the Quarkus Platform.
Source: quarkusio/quarkus