File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ plugins {
24
24
id " com.github.ben-manes.versions" version " 0.39.0"
25
25
}
26
26
27
- defaultTasks ' clean' , ' verifyJavaIrCodecsInSync ' , ' build'
27
+ defaultTasks ' clean' , ' build'
28
28
29
29
static def getBuildJavaVersion () {
30
30
def buildJavaVersion = System . getenv(' BUILD_JAVA_VERSION' ) ?: JavaVersion . current(). getMajorVersion()
@@ -744,13 +744,15 @@ def isNonStable = { String version ->
744
744
return ! stableKeyword && ! (version ==~ regex)
745
745
}
746
746
747
- tasks. named(" dependencyUpdates" ). configure {
747
+ tasks. named(' dependencyUpdates' ). configure {
748
748
// Reject all non stable versions
749
749
rejectVersionIf {
750
750
isNonStable(it. candidate. version)
751
751
}
752
752
}
753
753
754
+ tasks. findByName(' build' ). dependsOn verifyJavaIrCodecsInSync
755
+
754
756
wrapper {
755
757
gradleVersion = ' 7.1.1'
756
758
distributionType = ' ALL'
You can’t perform that action at this time.
0 commit comments