Ok, we have published Maven-central-compatible POMs with RC2.
To use that version, you'll want to point to the Spring milestone maven repository:
Code:
<repository>
<id>spring-milestone</id>
<name>Spring Portfolio Milestone Repository</name>
<url>http://maven.springframework.org/milestone</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
and then to add the dependency:
Code:
<dependency>
<groupId>org.springframework.flex</groupId>
<artifactId>spring-flex</artifactId>
<version>1.0.0.RC2</version>
</dependency>