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 {
2424 id " com.github.ben-manes.versions" version " 0.39.0"
2525}
2626
27- defaultTasks ' clean' , ' verifyJavaIrCodecsInSync ' , ' build'
27+ defaultTasks ' clean' , ' build'
2828
2929static def getBuildJavaVersion () {
3030 def buildJavaVersion = System . getenv(' BUILD_JAVA_VERSION' ) ?: JavaVersion . current(). getMajorVersion()
@@ -744,13 +744,15 @@ def isNonStable = { String version ->
744744 return ! stableKeyword && ! (version ==~ regex)
745745}
746746
747- tasks. named(" dependencyUpdates" ). configure {
747+ tasks. named(' dependencyUpdates' ). configure {
748748 // Reject all non stable versions
749749 rejectVersionIf {
750750 isNonStable(it. candidate. version)
751751 }
752752}
753753
754+ tasks. findByName(' build' ). dependsOn verifyJavaIrCodecsInSync
755+
754756wrapper {
755757 gradleVersion = ' 7.1.1'
756758 distributionType = ' ALL'
You can’t perform that action at this time.
0 commit comments