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 Mar 5, 2024
1 parent ec90c52 commit 4d533b8
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 @@ -26,16 +26,16 @@ configurations.configureEach {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds' // to disable caching of snapshots
}

tasks.register('checkstyle') {
dependsOn ':WesExamples:checkstyleMain', ':WesLibrary:checkstyleMain'
description 'Checks the style of all Java sourcecode.'
}

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

tasks.register('checkstyle') {
dependsOn ':WesExamples:checkstyleMain', ':WesLibrary:checkstyleMain'
description 'Checks the style of all Java sourcecode.'
}

// Register publishing tasks:

tasks.register('install') {
Expand Down

0 comments on commit 4d533b8

Please sign in to comment.