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>