Skip to content

Commit d48efdb

Browse files
authored
Update to Parent 44
1 parent ac9056e commit d48efdb

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

maven-plugin-report-plugin/src/test/java/org/apache/maven/plugin/plugin/report/GoalRendererTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import org.apache.maven.plugin.logging.SystemStreamLog;
2525
import org.junit.jupiter.api.Test;
2626

27-
import static org.junit.jupiter.api.Assertions.*;
27+
import static org.junit.jupiter.api.Assertions.assertEquals;
2828

2929
class GoalRendererTest {
3030

maven-plugin-tools-annotations/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@
3030
<name>Maven Plugin Tool for Java with Annotations</name>
3131
<description>Descriptor extractor for plugins written in Java with Java annotations.</description>
3232

33+
<properties>
34+
<!-- Disabled for this project, because the styleguide prevents some functional tests -->
35+
<checkstyle.includeTestSourceDirectory>false</checkstyle.includeTestSourceDirectory>
36+
</properties>
37+
3338
<dependencies>
3439
<!-- maven -->
3540
<dependency>

maven-plugin-tools-api/src/test/java/org/apache/maven/tools/plugin/util/TestUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
public class TestUtils {
3333

3434
@Test
35-
void testDirnameFunction_METATEST() throws UnsupportedEncodingException {
35+
void testDirnameFunctionMetatest() throws UnsupportedEncodingException {
3636
String classname = getClass().getName().replace('.', '/') + ".class";
3737
String basedir = TestUtils.dirname(classname);
3838

maven-plugin-tools-generators/src/test/java/org/apache/maven/tools/plugin/generator/HtmlToPlainTextConverterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
class HtmlToPlainTextConverterTest {
2727
private final Converter converter;
2828

29-
public HtmlToPlainTextConverterTest() {
29+
private HtmlToPlainTextConverterTest() {
3030
converter = new HtmlToPlainTextConverter();
3131
}
3232

maven-script/maven-plugin-tools-ant/src/test/java/org/apache/maven/tools/plugin/extractor/ant/AntMojoDescriptorExtractorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
public class AntMojoDescriptorExtractorTest {
5050

5151
@Test
52-
void testBasicMojoExtraction_CheckInjectedParametersAndRequirements()
52+
void testBasicMojoExtractionCheckInjectedParametersAndRequirements()
5353
throws InvalidPluginDescriptorException, ExtractionException {
5454
Map<String, Set<File>> scriptMap = buildTestMap("basic");
5555

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache.maven</groupId>
2525
<artifactId>maven-parent</artifactId>
26-
<version>43</version>
26+
<version>44</version>
2727
<relativePath />
2828
</parent>
2929

0 commit comments

Comments
 (0)