Is there a Maven repository available for the milestone releases?
Is there a Maven repository available for the milestone releases?
Yes, the milestone JARs have been published to the Spring milestone repository. You can add it to your pom:
Code:<repository> <id>repository.springframework.milestone</id> <name>Spring Framework Maven Milestone Repository</name> <url>http://maven.springframework.org/milestone</url> </repository>
Mark Fisher
Spring Integration Lead
SpringSource, a division of VMware
http://www.springsource.com
http://www.springsource.org/spring-integration
http://blog.springsource.com/main/author/markf
I'm trying to figure out the exact dependency pom file setting for the needed jars. What I have below doesn't work. Can anyone assist?
Thanks!
Stephen
<dependency>
<groupId>org.springframework</groupId>
<artifactId>amqp.rabbitmq</artifactId>
<version>1.0.0.M1</version>
</dependency>
Didn't see the pom.xml in the samples dir. Got it now..
<dependency>
<groupId>org.springframework.amqp</groupId>
<artifactId>spring-amqp</artifactId>
<version>${spring.amqp.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.amqp</groupId>
<artifactId>spring-rabbit</artifactId>
<version>${spring.amqp.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.amqp</groupId>
<artifactId>spring-rabbit-admin</artifactId>
<version>${spring.amqp.version}</version>
</dependency>