Cyril Scetbon
02/14/2020, 3:20 PM<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 projectFleshgrinder
02/14/2020, 3:36 PMtestImplementation("io.debezium", "debezium-core", "test-jar")
Cyril Scetbon
02/14/2020, 4:14 PMtestImplementation group: 'io.debezium', name: 'debezium-embedded', classifier: 'tests', version: "$dbzVersion"
Fleshgrinder
02/14/2020, 4:47 PMtestImplementation("io.debezium:debezium-core:$dbzVersion:test-jar")
.