Skip to content

Commit 197ca84

Browse files
Bump org.apache.maven.plugins:maven-plugins from 43 to 44 (#117)
* Bump org.apache.maven.plugins:maven-plugins from 43 to 44 Bumps [org.apache.maven.plugins:maven-plugins](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.plugins:maven-plugins dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix --------- 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]>
1 parent d6d2bb7 commit 197ca84

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

pom.xml

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

src/test/java/org/apache/maven/plugins/deploy/DeployFileMojoUnitTest.java

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,19 @@ public class DeployFileMojoUnitTest {
3838

3939
@BeforeEach
4040
public void setUp() {
41-
Model pomModel = Model.newBuilder()
42-
.packaging(null)
43-
.parent(
44-
parent = Parent.newBuilder()
45-
.groupId("parentGroup")
46-
.artifactId("parentArtifact")
47-
.version("parentVersion")
48-
.build())
41+
parent = Parent.newBuilder()
42+
.groupId("parentGroup")
43+
.artifactId("parentArtifact")
44+
.version("parentVersion")
4945
.build();
46+
Model pomModel = Model.newBuilder().packaging(null).parent(parent).build();
5047
mojo = new MockDeployFileMojo(pomModel);
5148
}
5249

5350
static class MockDeployFileMojo extends DeployFileMojo {
5451
private Model model;
5552

56-
public MockDeployFileMojo(Model model) {
53+
MockDeployFileMojo(Model model) {
5754
this.model = model;
5855
}
5956

0 commit comments

Comments
 (0)