Skip to content

Commit

Permalink
apps/build.gradle: register tasks to run 3 more tutorial apps
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 27, 2024
1 parent bcdfe3f commit 35c79a2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions apps/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ tasks.register('HelloContactResponse', JavaExec) {
description 'Runs the HelloContactResponse tutorial app.'
mainClass = 'com.github.stephengold.vsport.tutorial.HelloContactResponse'
}
tasks.register('HelloCustomShape', JavaExec) {
description 'Runs the HelloCustomShape tutorial app.'
mainClass = 'com.github.stephengold.vsport.tutorial.HelloCustomShape'
}
tasks.register('HelloDamping', JavaExec) {
description 'Runs the HelloDamping tutorial app.'
mainClass = 'com.github.stephengold.vsport.tutorial.HelloDamping'
Expand All @@ -87,6 +91,10 @@ tasks.register('HelloDeactivation', JavaExec) {
description 'Runs the HelloDeactivation tutorial app.'
mainClass = 'com.github.stephengold.vsport.tutorial.HelloDeactivation'
}
tasks.register('HelloDoor', JavaExec) {
description 'Runs the HelloDoor tutorial app.'
mainClass = 'com.github.stephengold.vsport.tutorial.HelloDoor'
}
tasks.register('HelloDoubleEnded', JavaExec) {
description 'Runs the HelloDoubleEnded tutorial app.'
mainClass = 'com.github.stephengold.vsport.tutorial.HelloDoubleEnded'
Expand Down Expand Up @@ -123,6 +131,10 @@ tasks.register('HelloMotor', JavaExec) {
description 'Runs the HelloMotor tutorial app.'
mainClass = 'com.github.stephengold.vsport.tutorial.HelloMotor'
}
tasks.register('HelloNewHinge', JavaExec) {
description 'Runs the HelloNewHinge tutorial app.'
mainClass = 'com.github.stephengold.vsport.tutorial.HelloNewHinge'
}
tasks.register('HelloNonUniformGravity', JavaExec) {
description 'Runs the HelloNonUniformGravity tutorial app.'
mainClass = 'com.github.stephengold.vsport.tutorial.HelloNonUniformGravity'
Expand Down

0 comments on commit 35c79a2

Please sign in to comment.