File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 153
153
<build >
154
154
<plugins >
155
155
156
+ <plugin >
157
+ <groupId >org.apache.maven.plugins</groupId >
158
+ <artifactId >maven-enforcer-plugin</artifactId >
159
+ <executions >
160
+ <execution >
161
+ <id >remove-obsolete-configuration</id >
162
+ <goals >
163
+ <goal >enforce</goal >
164
+ </goals >
165
+ <configuration >
166
+ <rules >
167
+ <requireProperty >
168
+ <property >project.parent.version</property >
169
+ <regex >12.0.0</regex >
170
+ <message >Remove obsolete configurations, see `TODO` comments.</message >
171
+ </requireProperty >
172
+ </rules >
173
+ </configuration >
174
+ </execution >
175
+ </executions >
176
+ </plugin >
177
+
178
+ <!-- TODO: Remove after `logging-parent` version `12.1.0` is out -->
179
+ <plugin >
180
+ <groupId >org.apache.maven.plugins</groupId >
181
+ <artifactId >maven-compiler-plugin</artifactId >
182
+ <configuration >
183
+ <compilerArgs combine.children=" append" >
184
+ <!-- Workaround Error Prone breaking change -->
185
+ <arg >--should-stop=ifError=FLOW</arg >
186
+ </compilerArgs >
187
+ </configuration >
188
+ </plugin >
189
+
156
190
<!--
157
191
~ Step 0: we add per-profile resource.
158
192
-->
You can’t perform that action at this time.
0 commit comments