File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed
src/test/java/org/apache/maven/plugins/deploy Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments