Skip to content

Commit

Permalink
Doc polishing
Browse files Browse the repository at this point in the history
Fix override for 1.1.0 - scala jars should be in test scope.
  • Loading branch information
garyrussell committed May 1, 2018
1 parent c5c2765 commit dbfa272
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/reference/asciidoc/appendix.adoc
Expand Up @@ -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>
Expand All @@ -41,13 +35,15 @@ 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>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.11</artifactId>
<version>1.1.0</version>
<classifier>test</classifier>
<scope>test</scope>
</dependency>
----

Expand Down

0 comments on commit dbfa272

Please sign in to comment.