Results 1 to 3 of 3

Thread: Right maven repository for spring data modules

  1. #1
    Join Date
    Oct 2008
    Posts
    5

    Default Right maven repository for spring data modules

    Is http://maven.springframework.org/ the right repository? Is it down? It used to work but not anymore.

  2. #2
    Join Date
    Jan 2011
    Location
    Dresden, Germany
    Posts
    525

    Default

    The Spring Data project releases are deployed to maven central.

    For snapshot releases, please use the snapshot repository:

    Code:
    <repository>
     <id>spring-snapshot</id>
     <name>Spring Maven SNAPSHOT Repository</name>
     <url>http://s3.amazonaws.com/maven.springframework.org/snapshot</url>
    </repository>

  3. #3
    Join Date
    Oct 2008
    Posts
    5

    Default

    Thanks, that works. I was using http://maven.springframework.org/ and it worked until now.

Posting Permissions

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