Skip to content

Commit

Permalink
Fix missing dependency on processBasePatches for 1.13.x and 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pokechu22 committed Oct 1, 2020
1 parent 9ff36b5 commit 200c293
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions 1.13.0/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ sourceSets {
tasks.withType(JavaCompile) { javaTask ->
javaTask.sourceCompatibility = "1.8"
javaTask.targetCompatibility = "1.8"
javaTask.dependsOn("processBasePatches")
}

sourceCompatibility = "1.8"
Expand Down
1 change: 1 addition & 0 deletions 1.13.1/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ sourceSets {
tasks.withType(JavaCompile) { javaTask ->
javaTask.sourceCompatibility = "1.8"
javaTask.targetCompatibility = "1.8"
javaTask.dependsOn("processBasePatches")
}

sourceCompatibility = "1.8"
Expand Down
1 change: 1 addition & 0 deletions 1.13.2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ sourceSets {
tasks.withType(JavaCompile) { javaTask ->
javaTask.sourceCompatibility = "1.8"
javaTask.targetCompatibility = "1.8"
javaTask.dependsOn("processBasePatches")
}

sourceCompatibility = "1.8"
Expand Down
1 change: 1 addition & 0 deletions 1.14.0/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ sourceSets {
tasks.withType(JavaCompile) { javaTask ->
javaTask.sourceCompatibility = "1.8"
javaTask.targetCompatibility = "1.8"
javaTask.dependsOn("processBasePatches")
}

sourceCompatibility = "1.8"
Expand Down

0 comments on commit 200c293

Please sign in to comment.