Results 1 to 3 of 3

Thread: Need snapshots maven repository info for spring-security-oauth2

  1. #1

    Default Need snapshots maven repository info for spring-security-oauth2

    Hi,

    Are spring-security-oauth2 snapshots available from any maven repository?

    Can someone please give me the relevant information?

    Thanks,
    Roshan

  2. #2
    Join Date
    Jun 2005
    Posts
    4,230

    Default

    Here's what I use:

    Code:
    <repository>
      <id>org.springframework.snapshot</id>
      <name>Spring Repository - Snapshots</name>
      <url>http://maven.springframework.org/snapshot/</url>
      <snapshots>
    	<enabled>true</enabled>
      </snapshots>
      <releases>
    	<enabled>false</enabled>
      </releases>
    </repository>
    But note that the nightly builds are still broken (haven't had time to fix it), so the frequency of deployment is basically as and when someone asks me to do it. I put one up there today.

  3. #3

    Default

    Thanks for the information, Dave.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •