Hi,
I've setup a nightly build for Spring Web Services. Every night at 02:00 (CET), a new snapshot build will be made, which will be copied to http://static.springframework.org/maven2-snapshots/.
If you use maven2 yourself, it is really easy to setup, just add the following repository:
then you can depend on the snapshots with something like:Code:<repository> <id>springframework.org</id> <name>Springframework Maven SNAPSHOT Repository</name> <url>http://static.springframework.org/maven2-snapshots/</url> </repository>
for the spring-ws-core jar. You can also depend on the other jars, of course.Code:<dependency> <groupId>org.springframework.ws</groupId> <artifactId>spring-ws-core</artifactId> <version>1.0-m2-SNAPSHOT</version> </dependency>
Cheers,


Reply With Quote
