Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed May 11, 2019
1 parent fe0c42e commit 119436f
Show file tree
Hide file tree
Showing 3 changed files with 327 additions and 387 deletions.
20 changes: 9 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext {
micronautVersion = "1.1.+"
confluentVersion = "5.1.+"
micronautVersion = "1.1.1"
confluentVersion = "5.2.+"
kafkaVersion = "2.2.+"
}

Expand All @@ -28,7 +28,6 @@ plugins {

// kafkahq
id "com.moowork.node" version "1.3.1"
id 'io.franzbecker.gradle-lombok' version '2.1'
id 'com.adarshr.test-logger' version '1.6.0'
id 'com.github.psxpaul.execfork' version '0.1.10'
id "com.github.ben-manes.versions" version "0.21.0"
Expand All @@ -49,11 +48,6 @@ repositories {
maven { url "https://jcenter.bintray.com" }
}

lombok {
version = '1.18.6'
sha256 = ""
}

idea {
module {
downloadJavadoc = false
Expand Down Expand Up @@ -105,6 +99,10 @@ gradle.taskGraph.whenReady { graph ->
* Dependencies
**********************************************************************************************************************/
dependencies {
// lombok
compileOnly 'org.projectlombok:lombok:1.18.8'
annotationProcessor "org.projectlombok:lombok:1.18.8"

// micronaut
annotationProcessor "io.micronaut:micronaut-inject-java"
annotationProcessor "io.micronaut:micronaut-validation"
Expand All @@ -129,7 +127,7 @@ dependencies {

// log
compile group: 'org.slf4j', name: 'jul-to-slf4j', version: '1.8.+'
compile group: 'org.slf4j', name: 'log4j-over-slf4j', version: '1.7.26'
compile group: 'org.slf4j', name: 'log4j-over-slf4j', version: '1.8.+'

// utils
compileOnly group: "org.projectlombok", name: "lombok", version: "1.18.+"
Expand All @@ -144,7 +142,7 @@ dependencies {
testRuntime "org.junit.jupiter:junit-jupiter-engine"

// test
testCompile "com.salesforce.kafka.test:kafka-junit5:3.1.0"
testCompile "com.salesforce.kafka.test:kafka-junit5:3.1.1"
testCompile "org.apache.kafka:kafka_2.12:" + kafkaVersion
testCompile "io.confluent:kafka-schema-registry:" + confluentVersion
testCompile "io.confluent:kafka-schema-registry:" + confluentVersion + ":tests"
Expand All @@ -154,7 +152,7 @@ dependencies {
testCompile group: 'org.apache.kafka', name: 'kafka-streams', version: kafkaVersion
testCompile group: "io.confluent", name: "kafka-streams-avro-serde", version: confluentVersion
testCompile "io.confluent:kafka-connect-avro-converter:" + confluentVersion
testCompile group: 'commons-codec', name: 'commons-codec', version: '1.11'
testCompile group: 'commons-codec', name: 'commons-codec', version: '1.12'
testImplementation 'org.hamcrest:hamcrest:2.1'
testImplementation 'org.hamcrest:hamcrest-library:2.1'
}
Expand Down
Loading

0 comments on commit 119436f

Please sign in to comment.