Skip to content

Commit

Permalink
Reorder build logic to ensure base conf is applied to subprojects
Browse files Browse the repository at this point in the history
  • Loading branch information
ldaley committed May 7, 2021
1 parent 3067bd4 commit 2cab397
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ratpack.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,6 @@ if (!JavaVersion.current().java11Compatible) {
throw new IllegalStateException("Must be built with Java 11 or higher")
}

apply from: "gradle/idea.gradle"
apply from: "gradle/publish-root.gradle"
apply from: "gradle/dependencies.gradle"
apply from: "gradle/coveralls.gradle"

gradle.beforeProject {
it.with {

Expand Down Expand Up @@ -104,3 +99,8 @@ gradle.beforeProject {
}
}
}

apply from: "gradle/idea.gradle"
apply from: "gradle/publish-root.gradle"
apply from: "gradle/dependencies.gradle"
apply from: "gradle/coveralls.gradle"

0 comments on commit 2cab397

Please sign in to comment.