Skip to content

Commit

Permalink
[SUREFIRE-2256] Upgrade to Parent 43
Browse files Browse the repository at this point in the history
This closes #770
  • Loading branch information
michael-o committed Aug 19, 2024
1 parent 4648b47 commit 79ea717
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.apache.maven</groupId>
<artifactId>maven-parent</artifactId>
<version>42</version>
<version>43</version>
</parent>

<groupId>org.apache.maven.surefire</groupId>
Expand Down Expand Up @@ -471,6 +471,7 @@
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<suppressionsLocation>src/config/checkstyle-suppressions.xml</suppressionsLocation>
</configuration>
</plugin>
<plugin>
Expand Down
29 changes: 29 additions & 0 deletions src/config/checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!DOCTYPE suppressions PUBLIC
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
<suppressions>
<suppress checks="ParameterNumberCheck" files="CategorizedReportEntry.java|SimpleReportEntry.java|SurefireReportRenderer.java|AbstractSurefireMojo.java|ModularClasspathForkConfiguration.java|EventDecoder.java|ForkStarter.java|StatelessXmlReporter.java|TestNGExecutor.java|BooterSerializer.java|DefaultStatelessReportMojoConfiguration.java" />
<suppress checks="MethodLengthCheck" files="AbstractStreamEncoderTest.java|EventChannelEncoderTest.java|EventDecoderTest.java|AbstractSurefireMojoTest.java|ForkStarter.java|AbstractSurefireMojoJava7PlusTest.java" />
<suppress checks="UnusedLocalVariableCheck" files="PpidCheckerTest.java|ATestClass.java|E2ETest.java|AbstractSurefireMojo.java|AbstractStreamDecoderTest.java" />
<suppress checks="AvoidStarImportCheck" files="BooterDeserializer.java|TestSuiteXmlParserTest.java" />
<suppress checks="FileLengthCheck" files="AbstractSurefireMojo.java|AbstractSurefireMojoTest.java" />
</suppressions>

0 comments on commit 79ea717

Please sign in to comment.