Skip to content

Commit

Permalink
upgraded stream dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Mar 23, 2021
1 parent a8d6612 commit 44ae781
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -115,5 +115,8 @@ githubRelease {
}

afterReleaseBuild.dependsOn ":githubRelease"
afterReleaseBuild.dependsOn gitPublishPush
gitPublishPush.dependsOn asciidoctor
asciidoctor.shouldRunAfter clean
build.dependsOn asciidoctor
gitPublishPush.dependsOn build
gitPublishPush.shouldRunAfter clean, build
task deploy(dependsOn: [gitPublishPush]) { shouldRunAfter build }
4 changes: 2 additions & 2 deletions connectors/stream/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ dependencies {
implementation project(':core')
implementation 'org.springframework.kafka:spring-kafka'
implementation 'org.apache.avro:avro:1.10.2'
implementation 'io.confluent:kafka-avro-serializer:6.1.0'
implementation 'io.confluent:kafka-protobuf-serializer:6.1.0'
implementation 'io.confluent:kafka-avro-serializer:6.1.1'
implementation 'io.confluent:kafka-protobuf-serializer:6.1.1'
implementation 'org.springframework.boot:spring-boot-autoconfigure'
testImplementation project(':connectors:test')
testImplementation group: 'org.testcontainers', name: 'kafka', version: testcontainers_version
Expand Down

0 comments on commit 44ae781

Please sign in to comment.