We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2418447 commit 7f43e71Copy full SHA for 7f43e71
build.gradle
@@ -118,6 +118,14 @@ subprojects {
118
}
119
120
121
+
122
+ // only apply to example sub-projects
123
+ if (project.path.startsWith(':examples:')) {
124
+ task execute(type:JavaExec) {
125
+ main = System.getProperty('mainClass')
126
+ classpath = sourceSets.main.runtimeClasspath
127
+ }
128
129
130
131
tasks.withType(Test).configureEach {
0 commit comments