Results 1 to 5 of 5

Thread: Maven repository location?

  1. #1
    Join Date
    Jul 2007
    Posts
    27

    Default Maven repository location?

    Hi guys,

    Are the Spring Integration release candidates being released to a Maven repository somewhere? I've tried searching the threads but URLs don't seem to be working. An updated repository (e.g. RC release artifacts and nightly snapshot artifacts) would make it really easy to track development in SI for those of us on Maven.

    Of course, I understand that putting out snapshot artifacts can be a pain in the neck without some sort of continuous integration. But even RC release artifacts would help.

    Thanks,
    Emerson

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

    Default

    This thread should provide the information you need: http://forum.springframework.org/showthread.php?t=57056

    If not, feel free to post additional questions here.

  3. #3
    Join Date
    Jul 2007
    Posts
    27

    Default

    Thanks. I had tried those URLs in a browser but got NoSuchKey errors back and assumed they didn't work. I've just tried using them through Maven and they do work; sorry about that.

    Is http://s3browse.com/explore/maven.springframework.org the correct URL to use for browsing the repositories? There's no sign of any SI artifact newer than M3 on there.


    PS. Can we add the snippet below to a FAQ somewhere, to help the next guy who tries to Google for the repository URLs? And the URL to browse them from too.

    Code:
       <repositories>
            <repository>
                <id>springsource-milestone</id>
                <url>http://repository.springsource.com/maven/bundles/milestone</url>
            </repository>
            <repository>
                <id>springsource-release</id>
                <url>http://repository.springsource.com/maven/bundles/release</url>
            </repository>
            <repository>
                <id>springsource-external</id>
                <url>http://repository.springsource.com/maven/bundles/snapshot</url>
            </repository>
        </repositories>
    
        <dependencies>
            <dependency>
                <groupId>org.springframework.integration</groupId>
                <artifactId>some.artifact</artifactId>
                <version>some.version</version>
            </dependency>
        </dependencies>

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

    Default

    This is the correct URL for browsing:
    http://s3browse.com/explore/reposito...k/integration/

    Notice that the URL changed when the artifacts were moved to the SpringSource Enterprise Bundle Repository between the M4 and M5 releases.

    I will add a link/page to the Spring Integration home (http://www.springframework.org/spring-integration) that contains this info.

    -Mark

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

    Default complete POM for samples

    You can get a complete POM for the samples here. It includes the repos along with the dependencies that are needed by the samples.


    Unless you enjoy spelunking through dozens of incomplete snippets here and there and cobbling one together for yourself then running to find you're missing something else yet again.

Posting Permissions

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