Hey guys, I have ``` <dependency> ...
# gradle
c
Hey guys, I have
Copy code
<dependency>
            <groupId>io.debezium</groupId>
            <artifactId>debezium-core</artifactId>
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>
I'd like to add it to my gradle with a kotlin project
f
You need to use the functions that allow you to specify the individual parts if you want to leave out the version but still have a classifier:
Copy code
testImplementation("io.debezium", "debezium-core", "test-jar")
c
thanks, I found another way :
Copy code
testImplementation group: 'io.debezium', name: 'debezium-embedded', classifier: 'tests', version: "$dbzVersion"
f
That looks like Groovy, not Kotlin. 😉
If you have a version you can also write
testImplementation("io.debezium:debezium-core:$dbzVersion:test-jar")
.