As some of you may know, the Sonatype OSSRH (OSS Repository Hosting) service [
will be sunsetted on June 30th].
This has historically been where the HAPI-FHIR project has published its `-SNAPSHOT` versions. As of version 8.3.12-SNAPSHOT, snapshot versions of HAPI-FHIR will instead be published to
Maven central. HAPI-FHIR has as of last night EST migrated to Maven Central for snapshot publishing.
This means that for users relying on snapshots of HAPI-FHIR, you will have to change your maven `<repository>` from OSSRH to Maven Central.
To do this, you should remove this repository from your pom.xml:
```xml
<repositories>
<repository>
<id>oss-snapshots</id>
<url>
https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
```
and instead add this new snapshot repository for maven central:
```xml
<repository>
<id>oss-snapshots</id>
<url>
https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
```
Note that while the migration from OSSRH to Maven Central is now complete, historical snapshots are not migrated. This means that come June 30th, only 8.3.12-SNAPSHOT and onward will be available. Please let me know if you have any questions.