Add repositories section to dependencies POM
Inadvertently missed on commit 7732135a2b
Fixes gh-1413
This commit is contained in:
parent
bd4eda383f
commit
75578e833a
|
|
@ -1313,4 +1313,26 @@
|
|||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
<repositories>
|
||||
<!--
|
||||
Repositories to allow snapshot and milestone BOM imports during
|
||||
development. This section is stripped out when a full release is prepared.
|
||||
-->
|
||||
<repository>
|
||||
<id>spring-milestones</id>
|
||||
<name>Spring Milestones</name>
|
||||
<url>http://repo.spring.io/milestone</url>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>spring-snapshots</id>
|
||||
<name>Spring Snapshots</name>
|
||||
<url>http://repo.spring.io/snapshot</url>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
</project>
|
||||
|
|
|
|||
Loading…
Reference in New Issue