Skip to content

Commit

Permalink
build.gradle: re-order tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 16, 2024
1 parent e5f83c8 commit 8dae0a6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ configurations.configureEach {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds' // to disable caching of snapshots
}

tasks.register('AppChooser') {
dependsOn ':SkyExamples:AppChooser'
description 'Runs the example apps.'
}

tasks.register('checkstyle') {
dependsOn ':SkyAssets:checkstyleMain', ':SkyExamples:checkstyleMain', \
':SkyLibrary:checkstyleMain', ':SkyLibrary:checkstyleTest'
description 'Checks the style of all Java sourcecode.'
}

tasks.register('AppChooser') {
dependsOn ':SkyExamples:AppChooser'
description 'Runs the example apps.'
}

// Register publishing tasks:

tasks.register('install') {
Expand Down

0 comments on commit 8dae0a6

Please sign in to comment.