Results 1 to 7 of 7

Thread: maven repo stale

  1. #1
    Join Date
    May 2008
    Location
    Haddonfield, NJ 08033
    Posts
    46

    Default maven repo stale

    At this repo the latest version is M3. Right now M6 is out but not in the repo.

    http://s3.amazonaws.com/maven.springframework.org/

    Are you using a different milestone repo now?


    (one needs to download the M6 zip and install it to their local repo)

  2. #2
    Join Date
    Oct 2005
    Location
    Boston, MA
    Posts
    2,854

    Default

    The latest version is M6, and it is in the repository - browsable at this location: http://s3browse.com/explore/reposito...pter/1.0.0.M6/

    The "m" went from lowercase to uppercase after m3 (to M4..M6), so perhaps that is causing the confusion.

  3. #3
    Join Date
    Feb 2008
    Location
    Dublin - Ireland
    Posts
    102

    Default

    BTW, are the nightly builds "mavenized" somewhere?

  4. #4
    Join Date
    May 2008
    Location
    Haddonfield, NJ 08033
    Posts
    46

    Default

    Quote Originally Posted by Mark Fisher View Post
    The latest version is M6, and it is in the repository - browsable at this location: http://s3browse.com/explore/reposito...pter/1.0.0.M6/

    The "m" went from lowercase to uppercase after m3 (to M4..M6), so perhaps that is causing the confusion.
    Sorry to be dense but I had this in my pom:

    Code:
    <repository>
            <id>spring-milestone</id>
            <name>Spring Portfolio Milestone Repository</name>
            <url>http://s3.amazonaws.com/maven.springframework.org/milestone</url>
        </repository>
    When I go to that URL I get an error. Removing the /milestone part shows
    a repo that goes only up to M3 - hence my confusion.

    I do see M6 at the s3browse.com URI you gave. But I'm having trouble translating that to a URL I can use in my POM.

    In this thread there was a discussion of repository problems.

    So, should we use this

    Code:
    <repository>
          <id>springsource-milestone</id>
          <url>http://repository.springsource.com/maven/bundles/milestone</url>
        </repository>
    or this:

    Code:
    <repository>
            <id>spring-milestone</id>
            <name>Spring Portfolio Milestone Repository</name>
            <url>http://s3.amazonaws.com/maven.springframework.org/milestone</url>
        </repository>
    ps
    a pom with repos config-ed and distributed with the samples would be nice.

    pps
    in the meantime I got it (manually) working locally via incantations like this:

    Code:
    mvn install:install-file -Dfile=F:\spring-integration-1.0.0.M6\dist\org.springframework.integration-1.0.0.M6.jar -DgroupId=org.springframework.integration -DartifactId=spring-integration-core -Dversion=1.0.0.M6 -Dpackaging=jar

  5. #5
    Join Date
    Oct 2005
    Location
    Boston, MA
    Posts
    2,854

    Default

    Yes, I see... sorry for adding even more confusion

    Please do use the maven repository at: "repository.springsource.com"

    The s3browse URL is available for browsing that repository, but the actual artifacts are available in the SpringSource Enterprise Bundle Repository. I believe this did begin with the M4 release.

    Regards,
    Mark

  6. #6
    Join Date
    Aug 2004
    Location
    Stockholm
    Posts
    466

    Default

    Are there any chance of getting the integration jars into regular Maven-repos when the component goes GA?
    I get some dependencies on multiple 2.5.5.A-jars of the Spring core when adding the temp repo integration packages....
    Anybody knows where to find 2.5.5.A??

    Thanks!
    Last edited by kantorn; Sep 18th, 2008 at 01:50 AM.
    Sincerely,
    /The Cantor

    "Murphy was an optimist"
    (The O'Toole commentary on Murphy's Law)

  7. #7
    Join Date
    Oct 2005
    Location
    Boston, MA
    Posts
    2,854

    Default

    The Spring 2.5.5.A JARs are in the repository, e.g.: http://www.springsource.com/reposito...chQuery=spring

    You should add the milestone, release, and external repositories to your configuration as described here: http://www.springsource.com/repository/app/faq#q8

    The Spring Integration JARs will be in the "release" repository after GA.

    Hope that helps.
    -Mark

Tags for this Thread

Posting Permissions

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