Skip to content

Commit 9a16dd2

Browse files
dependabot[bot]slachiewiczslawekjaranowski
authored
Bump org.apache.maven:maven-parent from 43 to 44 (#258)
* Bump org.apache.maven:maven-parent from 43 to 44 Bumps [org.apache.maven:maven-parent](https://github.com/apache/maven-parent) from 43 to 44. - [Release notes](https://github.com/apache/maven-parent/releases) - [Commits](https://github.com/apache/maven-parent/commits/v44) --- updated-dependencies: - dependency-name: org.apache.maven:maven-parent dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix * Fix checkstyle --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sylwester Lachiewicz <[email protected]> Co-authored-by: Slawomir Jaranowski <[email protected]>
1 parent 150bfe7 commit 9a16dd2

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

archetype-common/src/test/java/org/apache/maven/archetype/common/util/TestXMLOutputter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
/** @author <a href="mailto:[email protected]">John Casey</a> */
3131
public class TestXMLOutputter extends TestCase {
32-
public void testOutput_Document_ShouldParseAndOutputCDATASection_NoMods() throws JDOMException, IOException {
32+
public void testOutputDocumentShouldParseAndOutputCDATASectionNoMods() throws JDOMException, IOException {
3333
String content = "<document>" + "<element1>This is some text</element1>"
3434
+ "<description>And then,"
3535
+ "<![CDATA[<more content goes here>]]>"

archetype-common/src/test/java/org/apache/maven/archetype/generator/DefaultArchetypeGeneratorTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -605,11 +605,11 @@ private Model readPom(final File pomFile) throws IOException, XmlPullParserExcep
605605
}
606606

607607
private static class Archetype {
608-
public final String groupId;
609-
public final String artifactId;
610-
public final String version;
608+
final String groupId;
609+
final String artifactId;
610+
final String version;
611611

612-
public Archetype(String groupId, String artifactId, String version) {
612+
Archetype(String groupId, String artifactId, String version) {
613613
this.groupId = groupId;
614614
this.artifactId = artifactId;
615615
this.version = version;

maven-archetype-plugin/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@
116116
<dependency>
117117
<groupId>org.apache.maven.plugin-tools</groupId>
118118
<artifactId>maven-plugin-annotations</artifactId>
119+
<version>${version.maven-plugin-tools}</version>
119120
<optional>true</optional>
120121
</dependency>
121122

maven-archetype-plugin/src/test/java/org/apache/maven/archetype/ui/generation/DefaultArchetypeGenerationConfigurator2Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public void setUp() throws Exception {
105105
configurator.setArchetypeGenerationQueryer(queryer);
106106
}
107107

108-
public void testJIRA_509_FileSetArchetypeDefaultsWithVariables() throws Exception {
108+
public void testJIRA509FileSetArchetypeDefaultsWithVariables() throws Exception {
109109
ArchetypeGenerationRequest request = new ArchetypeGenerationRequest();
110110
request.setArchetypeGroupId("archetypeGroupId");
111111
request.setArchetypeArtifactId("archetypeArtifactId");

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)