Skip to content

Commit c410ea8

Browse files
committed
README: add dependency on Sonatype's snapshots repo when trying SNAPSHOT builds
1 parent 307d7e8 commit c410ea8

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,21 @@ add these repos to your `settings.xml` or your project `pom.xml`. Example:
5050
```xml
5151
<pluginRepositories>
5252
<pluginRepository>
53-
<id>sonatype-snapshots</id>
53+
<id>sonatype-releases</id>
5454
<url>http://oss.sonatype.org/content/repositories/releases</url>
5555
</pluginRepository>
5656
<pluginRepository>
5757
<id>clojars.org</id>
5858
<url>http://clojars.org/repo</url>
5959
</pluginRepository>
60+
61+
<!-- If you want to try SNAPSHOT versions, you need Sonatype's snapshots repo: -->
62+
<pluginRepository>
63+
<id>sonatype-snapshots</id>
64+
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
65+
</pluginRepository>
6066
</pluginRepositories>
67+
6168
```
6269

6370

0 commit comments

Comments
 (0)