Skip to content

Commit

Permalink
bugfix: build script not updated in reorg
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jul 7, 2024
1 parent 6fff43d commit 35575a0
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 @@ -205,13 +205,13 @@ tasks.withType(JavaCompile) { // Java compile-time options:
}

application {
mainClass = 'HelloWorld'
mainClass = 'testjoltjni.app.HelloWorld'
}
tasks.register('ConvexVsMeshScene', JavaExec) {
mainClass = 'ConvexVsMeshScene'
mainClass = 'testjoltjni.app.ConvexVsMeshScene'
}
tasks.register('HelloWorld', JavaExec) {
mainClass = 'HelloWorld'
mainClass = 'testjoltjni.app.HelloWorld'
}
tasks.withType(JavaExec).configureEach { // Java runtime options:
classpath sourceSets.test.runtimeClasspath
Expand Down

0 comments on commit 35575a0

Please sign in to comment.