Skip to content

Commit e56db79

Browse files
feat: Added systemShell gradle task
1 parent 5c0afdb commit e56db79

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

examples/java-client/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ task listPhotos(dependsOn: 'classes', type: JavaExec) {
4545
classpath = sourceSets.main.runtimeClasspath
4646
}
4747

48+
task systemShell(dependsOn: 'classes', type: JavaExec) {
49+
main = "io.mavsdk.example.SystemShell"
50+
classpath = sourceSets.main.runtimeClasspath
51+
}
52+
4853
task checkstyle(type: Checkstyle) {
4954
configFile = rootProject.file("config/checkstyle/checkstyle.xml")
5055
source 'src'

0 commit comments

Comments
 (0)