-
Yes we are using maven.
Apache Maven 2.2.1 (r801777; 2009-08-06 15:16:01-0400)
Java version: 1.6.0_20
-
Well, then all you need to do is configure your repos as such:
Code:
<repositories>
<repository>
<id>repository.springframework.maven.release</id>
<name>Spring Framework Maven Release Repository</name>
<url>http://maven.springframework.org/release</url>
</repository>
<repository>
<id>repository.springframework.maven.milestone</id>
<name>Spring Framework Maven Milestone Repository</name>
<url>http://maven.springframework.org/milestone</url>
</repository>
<repository>
<id>repository.springframework.maven.snapshot</id>
<name>Spring Framework Maven Snapshot Repository</name>
<url>http://maven.springframework.org/snapshot</url>
</repository>
</repositories>
and specify dependency on SI:
Code:
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-core</artifactId>
<version>2.0.2.BUILD-SNAPSHOT</version>
</dependency>
I'll let you know when its done. In fact i already fixed it. Just need to do a bit more testing with non-Filezilla ftp servers
-
Ok, i just committed a change
http://git.springsource.org/spring-i...b04965cb45e696
Give it shot and let me know.
As I said i was able to reproduce the issue with Filezilla and then validate that it is working.
-
Joseph
Have you had a chance to try it?