File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,18 @@ updateDependenciesSettings {
95
95
selection. reject(" org.opensaml maintains two different versions, so it must be updated manually" );
96
96
}
97
97
}
98
+ components. withModule(" io.spring.javaformat:spring-javaformat-gradle-plugin" ) { selection ->
99
+ ModuleComponentIdentifier candidate = selection. getCandidate();
100
+ if (! candidate. getVersion(). equals(selection. getCurrentVersion())) {
101
+ selection. reject(" spring-javaformat-gradle-plugin updates break checkstyle" );
102
+ }
103
+ }
104
+ components. withModule(" io.spring.javaformat:spring-javaformat-checkstyle" ) { selection ->
105
+ ModuleComponentIdentifier candidate = selection. getCandidate();
106
+ if (! candidate. getVersion(). equals(selection. getCurrentVersion())) {
107
+ selection. reject(" spring-javaformat-checkstyle updates break checkstyle" );
108
+ }
109
+ }
98
110
}
99
111
}
100
112
}
You can’t perform that action at this time.
0 commit comments