-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #246 from Aiven-Open/jjaakola-aiven-add-gradle-dep…
…endency-catalog chore: add Gradle dependency catalog and align dependency versions
- Loading branch information
Showing
4 changed files
with
157 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,87 @@ | ||
rootProject.name = "aiven-commons-for-apache-kafka-connect" | ||
|
||
val assertJVersion by extra ("3.26.0") | ||
val avroVersion by extra ("1.11.3") | ||
val avroConverterVersion by extra ("7.2.2") | ||
val avroDataVersion by extra ("7.2.2") | ||
val awaitilityVersion by extra ("4.2.1") | ||
val commonsTextVersion by extra ("1.11.0") | ||
val hadoopVersion by extra ("3.4.0") | ||
val hamcrestVersion by extra ("2.2") | ||
val jacksonVersion by extra ("2.15.3") | ||
val junitVersion by extra ("5.10.2") | ||
val jqwikVersion by extra ("1.8.4") | ||
val kafkaVersion by extra ("1.1.0") | ||
val logbackVersion by extra ("1.5.6") | ||
val localstackVersion by extra ("0.2.23") | ||
val mockitoVersion by extra ("5.12.0") | ||
val parquetVersion by extra ("1.11.2") | ||
val slf4jVersion by extra ("1.7.36") | ||
val snappyVersion by extra ("1.1.10.5") | ||
val spotbugsAnnotationsVersion by extra ("4.8.1") | ||
val stax2ApiVersion by extra ("4.2.2") | ||
val testcontainersVersion by extra ("1.19.8") | ||
val zstdVersion by extra ("1.5.6-3") | ||
val wireMockVersion by extra ("2.35.0") | ||
|
||
dependencyResolutionManagement { | ||
versionCatalogs { | ||
create("apache") { | ||
library("avro", "org.apache.avro:avro:$avroVersion") | ||
library("commons-text", "org.apache.commons:commons-text:$commonsTextVersion") | ||
library("kafka-connect-api","org.apache.kafka:connect-api:$kafkaVersion") | ||
library("kafka-connect-json", "org.apache.kafka:connect-json:$kafkaVersion") | ||
library("kafka-connect-runtime", "org.apache.kafka:connect-runtime:$kafkaVersion") | ||
library("kafka-connect-transforms", "org.apache.kafka:connect-transforms:$kafkaVersion") | ||
library("hadoop-common", "org.apache.hadoop:hadoop-common:$hadoopVersion") | ||
library("hadoop-mapreduce-client-core", "org.apache.hadoop:hadoop-mapreduce-client-core:$hadoopVersion") | ||
library("parquet-avro", "org.apache.parquet:parquet-avro:$parquetVersion") | ||
library("parquet-tools", "org.apache.parquet:parquet-tools:$parquetVersion") | ||
} | ||
create("compressionlibs") { | ||
library("snappy", "org.xerial.snappy:snappy-java:$snappyVersion") | ||
library("zstd-jni", "com.github.luben:zstd-jni:$zstdVersion") | ||
} | ||
create("confluent") { | ||
library("kafka-connect-avro-converter", "io.confluent:kafka-connect-avro-converter:$avroConverterVersion") | ||
library("kafka-connect-avro-data", "io.confluent:kafka-connect-avro-data:$avroDataVersion") | ||
} | ||
create("jackson") { | ||
library("databind", "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion") | ||
} | ||
create("kafkalibs") { | ||
|
||
} | ||
create("logginglibs") { | ||
library("logback-classic", "ch.qos.logback:logback-classic:$logbackVersion") | ||
library("slf4j", "org.slf4j:slf4j-api:$slf4jVersion") | ||
library("slf4j-log4j12", "org.slf4j:slf4j-log4j12:$slf4jVersion") | ||
} | ||
create("tools") { | ||
library("spotbugs-annotations", "com.github.spotbugs:spotbugs-annotations:$spotbugsAnnotationsVersion") | ||
} | ||
create("testinglibs") { | ||
library("assertj-core", "org.assertj:assertj-core:$assertJVersion") | ||
library("awaitility", "org.awaitility:awaitility:$awaitilityVersion") | ||
library("hamcrest", "org.hamcrest:hamcrest:$hamcrestVersion") | ||
library("localstack", "cloud.localstack:localstack-utils:$localstackVersion") | ||
library("junit-jupiter", "org.junit.jupiter:junit-jupiter:$junitVersion") | ||
library("junit-jupiter-engine", "org.junit.jupiter:junit-jupiter-engine:$junitVersion") | ||
library("jqwik", "net.jqwik:jqwik:$jqwikVersion") | ||
library("jqwik-engine", "net.jqwik:jqwik-engine:$jqwikVersion") | ||
library("mockito-core", "org.mockito:mockito-core:$mockitoVersion") | ||
library("mockito-junit-jupiter", "org.mockito:mockito-junit-jupiter:$mockitoVersion") | ||
library("wiremock", "com.github.tomakehurst:wiremock-jre8:$wireMockVersion") | ||
library("woodstox-stax2-api", "org.codehaus.woodstox:stax2-api:$stax2ApiVersion") | ||
} | ||
create("testcontainers") { | ||
library("junit-jupiter", "org.testcontainers:junit-jupiter:$testcontainersVersion") | ||
library("kafka", "org.testcontainers:kafka:$testcontainersVersion") // this is not Kafka version | ||
library("localstack", "org.testcontainers:localstack:$testcontainersVersion") | ||
} | ||
} | ||
} | ||
|
||
include("commons") | ||
include("gcs-connector") | ||
include("s3-connector") |