Skip to content

Commit

Permalink
use new mainclass spec
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieSinn committed Oct 1, 2024
1 parent 27a5fd6 commit c1a66ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -193,17 +193,17 @@ configurations {
task runLocalExample(type: JavaExec) {
description = "Run the local bucketing example"
classpath = sourceSets.examples.runtimeClasspath
main = 'com.devcycle.examples.LocalExample'
mainClass = 'com.devcycle.examples.LocalExample'
}

task runCloudExample(type: JavaExec) {
description = "Run the cloud bucketing example"
classpath = sourceSets.examples.runtimeClasspath
main = 'com.devcycle.examples.CloudExample'
mainClass = 'com.devcycle.examples.CloudExample'
}

task runOpenFeatureExample(type: JavaExec) {
description = "Run the OpenFeature example"
classpath = sourceSets.examples.runtimeClasspath
main = 'com.devcycle.examples.OpenFeatureExample'
mainClass = 'com.devcycle.examples.OpenFeatureExample'
}

0 comments on commit c1a66ec

Please sign in to comment.