Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dharin-shah committed Mar 15, 2023
1 parent 6d5bccc commit 86e1bbe
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 19 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,32 @@ version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url "https://repo.spring.io/release"
url "https://packages.confluent.io/maven"
}
maven {
url "https://repository.jboss.org/maven2"
mavenLocal()
}

java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation 'org.apache.kafka:kafka-streams'
implementation 'org.apache.kafka:kafka-clients'
implementation 'org.projectlombok:lombok:1.18.22'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
implementation 'org.apache.kafka:kafka-streams:3.4.0'
implementation 'org.apache.kafka:kafka-clients:3.4.0'
implementation('io.streamthoughts:azkarra-streams:0.9.2')
compileOnly('io.streamthoughts:azkarra-metrics:0.9.2')
testImplementation 'org.apache.kafka:kafka-streams-test-utils'
testImplementation('org.junit.jupiter:junit-jupiter')
implementation 'org.rocksdb:rocksdbjni:7.0.4'
compileOnly('io.streamthoughts:azkarra-metrics:0.9.2')
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3'
// Mapper & Lombok Compatibility Binding
compileOnly "org.projectlombok:lombok-mapstruct-binding:0.2.0"
testCompileOnly "org.projectlombok:lombok-mapstruct-binding:0.2.0"
testAnnotationProcessor "org.projectlombok:lombok-mapstruct-binding:0.2.0"
}

test {
Expand Down
1 change: 1 addition & 0 deletions src/main/java/streams/processors/BufferedProcessor.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import java.time.Duration;
import java.util.ArrayList;
import lombok.SneakyThrows;
import org.apache.kafka.streams.processor.PunctuationType;
import org.apache.kafka.streams.processor.api.Processor;
import org.apache.kafka.streams.processor.api.ProcessorContext;
Expand Down

0 comments on commit 86e1bbe

Please sign in to comment.