In order to join the Spring Cloud release train we have to align the dependencies and (more importantly) the dependency management strategy. The strategy is to not put version ids in <dependencies> (only in <dependencyManagement>) where possible. And more importantly we cannot use the releae train itself (creates a cycle). This change achieves most of that (and mkae it possible for client apps to use spring-cloud-starter-parent:Brixton.BUILD-SNAPSHOT) Add spring-integration bom
51 lines
1.6 KiB
XML
51 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-stream-binder-test</artifactId>
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>spring-cloud-stream-binder-test</name>
|
|
<description>Test support for binder implementations</description>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-stream-binders-parent</artifactId>
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<spring-amqp.version>1.4.5.RELEASE</spring-amqp.version>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-test</artifactId>
|
|
<version>${spring-integration.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.avro</groupId>
|
|
<artifactId>avro-compiler</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.xd</groupId>
|
|
<artifactId>spring-xd-tuple</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-stream-binder-spi</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|