Doc polishing

Fix override for 1.1.0 - scala jars should be in test scope.
This commit is contained in:
Gary Russell
2018-05-01 16:19:58 -04:00
parent c5c2765f38
commit dbfa27296a

View File

@@ -16,12 +16,6 @@ When using `spring-kafka-test` (_version 2.1.x_, starting with _version 2.1.5_)
<artifactId>spring-kafka-test</artifactId>
<version>${spring.kafka.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
@@ -41,6 +35,7 @@ When using `spring-kafka-test` (_version 2.1.x_, starting with _version 2.1.5_)
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.11</artifactId>
<version>1.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -48,6 +43,7 @@ When using `spring-kafka-test` (_version 2.1.x_, starting with _version 2.1.5_)
<artifactId>kafka_2.11</artifactId>
<version>1.1.0</version>
<classifier>test</classifier>
<scope>test</scope>
</dependency>
----