Skip to content

Commit b860a2e

Browse files
garyrussellartembilan
authored andcommitted
Merge Spring Integration Kafka into Main Repo
- merge master branch from old repo (`git-filter-repo`) for src branch - update build.gradle - copy docs from Spring for Apache Kafka Chapter Doc polishing. Fix http: references in tests. * Add `What's New` note and fix `polling-consumer.adoc` not linking to external project any more
1 parent 3ec74f3 commit b860a2e

File tree

66 files changed

+961
-508
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+961
-508
lines changed

build.gradle

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ ext {
9898
soapVersion = '1.4.0'
9999
springAmqpVersion = project.hasProperty('springAmqpVersion') ? project.springAmqpVersion : '2.3.0-SNAPSHOT'
100100
springDataVersion = project.hasProperty('springDataVersion') ? project.springDataVersion : '2020.0.0-SNAPSHOT'
101+
springKafkaVersion = '2.5.3.BUILD-SNAPSHOT'
101102
springSecurityVersion = project.hasProperty('springSecurityVersion') ? project.springSecurityVersion : '5.4.0-SNAPSHOT'
102103
springRetryVersion = '1.3.0'
103104
springVersion = project.hasProperty('springVersion') ? project.springVersion : '5.3.0-SNAPSHOT'
@@ -592,6 +593,24 @@ project('spring-integration-jpa') {
592593
}
593594
}
594595

596+
project('spring-integration-kafka') {
597+
description = 'Spring Integration for Apache Kafka'
598+
dependencies {
599+
api project(':spring-integration-core')
600+
api ("org.springframework.kafka:spring-kafka:$springKafkaVersion") {
601+
exclude group: 'org.springframework'
602+
}
603+
604+
testImplementation "org.springframework.kafka:spring-kafka-test:$springKafkaVersion"
605+
testImplementation "com.willowtreeapps.assertk:assertk-jvm:$assertkVersion"
606+
testImplementation 'org.jetbrains.kotlin:kotlin-reflect'
607+
testImplementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
608+
609+
testRuntimeOnly 'com.fasterxml.jackson.core:jackson-core'
610+
testRuntimeOnly 'com.fasterxml.jackson.core:jackson-databind'
611+
}
612+
}
613+
595614
project('spring-integration-mail') {
596615
description = 'Spring Integration Mail Support'
597616
dependencies {

spring-integration-kafka/src/api/overview.html

Lines changed: 0 additions & 22 deletions
This file was deleted.

spring-integration-kafka/src/checkstyle/checkstyle-header.txt

Lines changed: 0 additions & 17 deletions
This file was deleted.

spring-integration-kafka/src/checkstyle/checkstyle-suppressions.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

spring-integration-kafka/src/checkstyle/checkstyle.xml

Lines changed: 0 additions & 180 deletions
This file was deleted.

0 commit comments

Comments
 (0)