diff --git a/index.html b/index.html
index dd614acfe..eb18cd194 100644
--- a/index.html
+++ b/index.html
@@ -39,6 +39,7 @@ badges:
Spring Cloud Stream is an event-driven microservices framework for building highly-scalable applications connected via shared messaging systems.
+
The framework provides flexible programming model built on already established and familiar Spring idioms and best practices, including support
for persistent pub/sub semantics, consumer groups, and stateful partitions.
@@ -66,7 +67,7 @@ messaging system (e.g. [Rabbit MQ](https://github.com/spring-cloud/spring-cloud-
depending on the binder-implementation of choice).
For more comprehansive step-by-step _getting started_ experience please refer to the
-[Quick Start](https://docs.spring.io/spring-cloud-stream/docs/Elmhurst.RELEASE/reference/htmlsingle/#_quick_start) section of the user guide, otherwise. . .
+[Quick Start](https://docs.spring.io/spring-cloud-stream/docs/Elmhurst.RELEASE/reference/htmlsingle/#_quick_start) section of the user guide.
Below is the fully functional Spring Cloud Stream application, which receives and logs data to the console.
@@ -110,82 +111,10 @@ You can start the application by simply running its main method.
For more details please refer to the [Quick Start](https://docs.spring.io/spring-cloud-stream/docs/Elmhurst.RELEASE/reference/htmlsingle/#_quick_start) section of the user guide.
-Currently Spring Cloud Stream suports [Rabbit MQ](https://github.com/spring-cloud/spring-cloud-stream-binder-rabbit) and [Kafka](https://github.com/spring-cloud/spring-cloud-stream-binder-kafka) binders with more binder implementations in the pipeline (such as [Google PubSub](https://github.com/spring-cloud/spring-cloud-gcp/tree/master/spring-cloud-gcp-pubsub-stream-binder), [AWS Kinesis](https://github.com/spring-cloud/spring-cloud-stream-binder-aws-kinesis) and more).
-
-### Kafka Client Compatibility notes
-
-Spring Cloud Stream's Kafka binder builds upon Spring Kafka and Spring Integration Kafka libraries. Specifically, Spring Kafka is the core to this foundation, and it is based on the pure java `kafka-clients` jar.
-
-The following is the compatibility matrix of Spring cloud Stream and its dependent projects (and broker versions):
-
-
-
- | Spring Cloud Stream Version |
- Spring for Apache Kafka Version |
- Spring Integration for Apache Kafka Version |
- kafka-clients Version |
- Kafka Broker Version |
-
-
- | 2.0.x |
- 2.1.x |
- 3.0.x |
- 1.0.x* |
- 1.0.x, 0.11.0.x* |
-
-
- | 1.3.x |
- 1.3.x, 1.2.x, 1.1.x |
- 2.3.x, 2.2.x, 2.1.x |
- 0.11.0.x**, 0.10.2.x |
- (Same as client) |
-
-
- | 1.2.x |
- 1.2.x, 1.1.x |
- 2.2.x, 2.1.x |
- 0.10.1.x |
- (Same as client) |
-
-
-
-Depending on the selected release-combination, the dependent projects will be referenced transitively when using maven or gradle for version management.
-
-The 2.0.x binder uses the pure java `AdminClient` to provision topics and supports native headers.
-The 1.0.x client can communicate with an 0.11.x.x broker (which also supports headers).
-When using with a 0.11.x.x broker, topics can be provisioned, but the number of partitions cannot be automatically adjusted up.
-To increase the number of topics, you must use the kafka tools instead.
-The property `spring.cloud.stream.kafka.binder.auto-add-partitions` must be `false` (default).
-
-To use the 0.11.x.x `kafka-clients` with 1.3.x, you must use the `spring-cloud-stream-binder-kafka11` jar (instead of `spring-cloud-stream-binder-kafka`). You must also override certain other jar versions as follows:
-
-
-
- | spring-cloud-stream-binder-kafka11 |
- 1.3.0.RELEASE or higher |
-
-
- | spring-kafka |
- 1.3.2.RELEASE or higher |
-
-
- | spring-integration-kafka |
- 2.3.0.RELEASE or higher |
-
-
- | spring-integration-core |
- 4.3.13.RELEASE or higher |
-
-
- | spring-integration-jmx |
- 4.3.13.RELEASE or higher |
-
-
- | kafka_2.11 |
- (same version as kafka-clients) |
-
-
+Currently Spring Cloud Stream supports [RabbitMQ](https://github.com/spring-cloud/spring-cloud-stream-binder-rabbit) and [Kafka](https://github.com/spring-cloud/spring-cloud-stream-binder-kafka) binders with more binder implementations in the pipeline _(such as: [Google PubSub](https://github.com/spring-cloud/spring-cloud-gcp/tree/master/spring-cloud-gcp-pubsub-stream-binder) and [AWS Kinesis](https://github.com/spring-cloud/spring-cloud-stream-binder-aws-kinesis))_.
+### Kafka Client Compatibility
+Spring Cloud Stream supports a variety of Kafka Client releases. To learn more about it, please refer to the [Kafka Client Compatibility](https://github.com/spring-cloud/spring-cloud-stream/wiki/Kafka-Client-Compatibility) section in the Wiki page.
{% endcapture %}