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
91 lines
2.9 KiB
XML
91 lines
2.9 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>
|
|
|
|
<artifactId>spring-cloud-stream-binders-parent</artifactId>
|
|
<packaging>pom</packaging>
|
|
<url>http://projects.spring.io/spring-xd/</url>
|
|
<organization>
|
|
<name>Pivotal Software, Inc.</name>
|
|
<url>http://www.spring.io</url>
|
|
</organization>
|
|
<parent>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-stream-parent</artifactId>
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
|
</parent>
|
|
<properties>
|
|
<kafka.version>0.8.2.1</kafka.version>
|
|
<curator.version>2.6.0</curator.version>
|
|
<spring-xd.version>1.2.1.BUILD-SNAPSHOT</spring-xd.version>
|
|
</properties>
|
|
<modules>
|
|
<module>spring-cloud-stream-binder-spi</module>
|
|
<module>spring-cloud-stream-binder-test</module>
|
|
<module>spring-cloud-stream-binder-local</module>
|
|
<module>spring-cloud-stream-binder-rabbit</module>
|
|
<module>spring-cloud-stream-binder-redis</module>
|
|
<module>spring-cloud-stream-binder-kafka</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.xd</groupId>
|
|
<artifactId>spring-xd-tuple</artifactId>
|
|
<version>${spring-xd.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.kafka</groupId>
|
|
<artifactId>kafka_2.10</artifactId>
|
|
<version>${kafka.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.kafka</groupId>
|
|
<artifactId>kafka_2.10</artifactId>
|
|
<classifier>test</classifier>
|
|
<version>${kafka.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.kafka</groupId>
|
|
<artifactId>kafka-clients</artifactId>
|
|
<version>${kafka.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.curator</groupId>
|
|
<artifactId>curator-framework</artifactId>
|
|
<version>${curator.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.curator</groupId>
|
|
<artifactId>curator-recipes</artifactId>
|
|
<version>${curator.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.curator</groupId>
|
|
<artifactId>curator-test</artifactId>
|
|
<version>${curator.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|