Alessandro Tagliapietra
01/30/2022, 6:04 PM// Custom jars for kafka connect
create<ShadowJar>("kafkaConnectUtilsJar") {
archiveClassifier.set("connect-utils")
include("co/visup/kafkaProcessor/connect/**")
include("co/visup/kafkaProcessor/serializer/**")
dependencies {
include(dependency("io.confluent:kafka-connect-storage-partitioner:10.2.4"))
}
from(project.sourceSets.main.get().output)
configurations = listOf(project.configurations.runtimeClasspath.get())
}
however while I see the classes in co/visup
etc, I don't see the dependency, anyone has any idea?Alessandro Tagliapietra
01/31/2022, 2:58 PMinclude()
part of your directory tree it removes all the dependencies