Skip to content

Commit

Permalink
chore(build): don't use deprecated property (#1337)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucapette authored and tchiotludo committed Apr 4, 2023
1 parent 435adf9 commit 779ffaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -206,14 +206,14 @@ task testKafkaCluster(type:JavaExec) {
group = 'verification'
description = 'Start a standalone test Kafka cluster'
classpath sourceSets.test.runtimeClasspath
main = "org.akhq.KafkaTestCluster"
mainClass = "org.akhq.KafkaTestCluster"
}

task testInjectData(type:JavaExec) {
group = 'verification'
description = 'Inject data in a existing kafka cluster'
classpath sourceSets.test.runtimeClasspath
main = "org.akhq.KafkaTestCluster"
mainClass = "org.akhq.KafkaTestCluster"
args 'inject'
}

Expand Down

0 comments on commit 779ffaa

Please sign in to comment.