maven-repository-milestone.asc 556 B

1234567891011121314
  1. In order to resolve Spring Security milestones and release candidates add the Spring Milestone repository. For our example, the repository has already been added for you. In the event you were working on another application, you would need to ensure you add the following to your pom:
  2. .pom.xml
  3. [source,xml]
  4. ----
  5. <repositories>
  6. <!-- ... possibly other repository elements ... -->
  7. <repository>
  8. <id>spring-milestone</id>
  9. <name>Spring Milestone Repository</name>
  10. <url>https://repo.spring.io/milestone</url>
  11. </repository>
  12. </repositories>
  13. ----