This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch MNG-7056 in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git
commit 77475dca8e2e0560b789d4ff602517cf593c0e81 Author: Michael Osipov <[email protected]> AuthorDate: Sun Jul 4 10:12:42 2021 +0200 Java --- .../it/MavenITmng3642DynamicResourcesTest.java | 10 +++--- .../issue/src/main/java/mng/Issue2289.java | 10 +++--- .../main/java/org/apache/maven/it/mng3203/App.java | 2 +- .../java/org/apache/maven/it/mng3203/Diamond.java | 2 +- .../module1/src/main/java/mng/XStreamTestCase.java | 23 ++++++------- .../module2/src/main/java/mng/Module2.java | 2 +- .../module3/src/main/java/mng/Module3.java | 2 +- .../module3/src/test/java/mng/Module3TestUtil.java | 10 +++--- .../module4/src/main/java/mng/Module4.java | 2 +- .../module4/src/main/java/mng/Module4Bean.java | 38 +++++++++++----------- .../module5/src/main/java/mng/Module5.java | 2 +- .../module5/src/test/java/mng/Module5Test.java | 23 +++++++------ .../java/org/apache/maven/its/mng3506/App.java | 28 ++++++++-------- .../java/org/apache/maven/its/mng3506/AppTest.java | 28 ++++++++-------- .../java/org/apache/maven/its/mng3506/App.java | 28 ++++++++-------- .../java/org/apache/maven/its/mng3506/AppTest.java | 28 ++++++++-------- .../src/main/java/plugin/MyMojo.java | 24 +++++++------- .../java/org/apache/maven/its/mng3506/App.java | 28 ++++++++-------- .../java/org/apache/maven/its/mng3506/AppTest.java | 28 ++++++++-------- .../main/java/org/apache/maven/it/mng4347/App.java | 2 +- .../basic/test/BasicTest.java | 13 ++++---- 21 files changed, 169 insertions(+), 164 deletions(-) diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3642DynamicResourcesTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3642DynamicResourcesTest.java index 7619dab..e6b179a 100644 --- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3642DynamicResourcesTest.java +++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3642DynamicResourcesTest.java @@ -86,10 +86,10 @@ public class MavenITmng3642DynamicResourcesTest */ verifier.resetStreams(); - File first = new File( testDir, "target/test-classes/one.txt" ); - assertTrue( "First resource file was not present: " + first, first.exists() ); - - File second = new File( testDir, "target/test-classes/two.txt" ); - assertTrue( "Second resource file was not present: " + second, second.exists() ); + File first = new File( testDir, "target/test-classes/one.txt" ); + assertTrue( "First resource file was not present: " + first, first.exists() ); + + File second = new File( testDir, "target/test-classes/two.txt" ); + assertTrue( "Second resource file was not present: " + second, second.exists() ); } } diff --git a/core-it-suite/src/test/resources/mng-2289/issue/src/main/java/mng/Issue2289.java b/core-it-suite/src/test/resources/mng-2289/issue/src/main/java/mng/Issue2289.java index 91a16b8..1073f80 100644 --- a/core-it-suite/src/test/resources/mng-2289/issue/src/main/java/mng/Issue2289.java +++ b/core-it-suite/src/test/resources/mng-2289/issue/src/main/java/mng/Issue2289.java @@ -4,9 +4,9 @@ import junit.framework.TestCase; public class Issue2289 { - public static void main(final String[] args) - { - TestCase tc = new TestCase("Dummy") {}; - System.exit(tc == null ? -1 : 0); - } + public static void main(final String[] args) + { + TestCase tc = new TestCase("Dummy") {}; + System.exit(tc == null ? -1 : 0); + } } diff --git a/core-it-suite/src/test/resources/mng-3203/src/main/java/org/apache/maven/it/mng3203/App.java b/core-it-suite/src/test/resources/mng-3203/src/main/java/org/apache/maven/it/mng3203/App.java index 367a7a5..5fd389e 100644 --- a/core-it-suite/src/test/resources/mng-3203/src/main/java/org/apache/maven/it/mng3203/App.java +++ b/core-it-suite/src/test/resources/mng-3203/src/main/java/org/apache/maven/it/mng3203/App.java @@ -11,6 +11,6 @@ public class App { public static void main( String[] args ) { - List<String> stuff = new ArrayList<String>(); + List<String> stuff = new ArrayList<String>(); } } diff --git a/core-it-suite/src/test/resources/mng-3203/src/main/java/org/apache/maven/it/mng3203/Diamond.java b/core-it-suite/src/test/resources/mng-3203/src/main/java/org/apache/maven/it/mng3203/Diamond.java index 39d3ceb..c886881 100644 --- a/core-it-suite/src/test/resources/mng-3203/src/main/java/org/apache/maven/it/mng3203/Diamond.java +++ b/core-it-suite/src/test/resources/mng-3203/src/main/java/org/apache/maven/it/mng3203/Diamond.java @@ -11,6 +11,6 @@ public class Diamond { public static void main( String[] args ) { - List<String> stuff = new ArrayList<>(); + List<String> stuff = new ArrayList<>(); } } diff --git a/core-it-suite/src/test/resources/mng-3259/module1/src/main/java/mng/XStreamTestCase.java b/core-it-suite/src/test/resources/mng-3259/module1/src/main/java/mng/XStreamTestCase.java index d1acb80..10c430f 100644 --- a/core-it-suite/src/test/resources/mng-3259/module1/src/main/java/mng/XStreamTestCase.java +++ b/core-it-suite/src/test/resources/mng-3259/module1/src/main/java/mng/XStreamTestCase.java @@ -6,18 +6,19 @@ import org.jmock.MockObjectTestCase; public abstract class XStreamTestCase extends MockObjectTestCase { - private XStream xstream; + private XStream xstream; - public void setUp() - { - xstream = new XStream(); - } + public void setUp() + { + xstream = new XStream(); + } - public void testToXml() { - String xml = xstream.toXML(getObject()); - assertEquals(getXML(), xml); - } + public void testToXml() + { + String xml = xstream.toXML(getObject()); + assertEquals(getXML(), xml); + } - protected abstract Object getObject(); - protected abstract String getXML(); + protected abstract Object getObject(); + protected abstract String getXML(); } diff --git a/core-it-suite/src/test/resources/mng-3259/module2/src/main/java/mng/Module2.java b/core-it-suite/src/test/resources/mng-3259/module2/src/main/java/mng/Module2.java index 75716db..10cce09 100644 --- a/core-it-suite/src/test/resources/mng-3259/module2/src/main/java/mng/Module2.java +++ b/core-it-suite/src/test/resources/mng-3259/module2/src/main/java/mng/Module2.java @@ -4,5 +4,5 @@ import com.thoughtworks.xstream.XStream; public class Module2 { - XStream xstream; + XStream xstream; } diff --git a/core-it-suite/src/test/resources/mng-3259/module3/src/main/java/mng/Module3.java b/core-it-suite/src/test/resources/mng-3259/module3/src/main/java/mng/Module3.java index e06fc87..5de0a84 100644 --- a/core-it-suite/src/test/resources/mng-3259/module3/src/main/java/mng/Module3.java +++ b/core-it-suite/src/test/resources/mng-3259/module3/src/main/java/mng/Module3.java @@ -2,5 +2,5 @@ package mng; public class Module3 extends Module2 { - public static String MODULE = "3"; + public static String MODULE = "3"; } diff --git a/core-it-suite/src/test/resources/mng-3259/module3/src/test/java/mng/Module3TestUtil.java b/core-it-suite/src/test/resources/mng-3259/module3/src/test/java/mng/Module3TestUtil.java index b3b5890..1db1abf 100644 --- a/core-it-suite/src/test/resources/mng-3259/module3/src/test/java/mng/Module3TestUtil.java +++ b/core-it-suite/src/test/resources/mng-3259/module3/src/test/java/mng/Module3TestUtil.java @@ -6,9 +6,9 @@ import com.thoughtworks.xstream.io.xml.DomDriver; public class Module3TestUtil { - public static String getCalendarAsXML(Calendar cal) - { - XStream xstream = new XStream(new DomDriver()); - return xstream.toXML(cal); - } + public static String getCalendarAsXML(Calendar cal) + { + XStream xstream = new XStream(new DomDriver()); + return xstream.toXML(cal); + } } diff --git a/core-it-suite/src/test/resources/mng-3259/module4/src/main/java/mng/Module4.java b/core-it-suite/src/test/resources/mng-3259/module4/src/main/java/mng/Module4.java index 5d8347f..dab8c1b 100644 --- a/core-it-suite/src/test/resources/mng-3259/module4/src/main/java/mng/Module4.java +++ b/core-it-suite/src/test/resources/mng-3259/module4/src/main/java/mng/Module4.java @@ -10,6 +10,6 @@ import javax.ejb.EJBObject; */ public interface Module4 extends EJBObject { - public boolean doIt() throws RemoteException; + public boolean doIt() throws RemoteException; } diff --git a/core-it-suite/src/test/resources/mng-3259/module4/src/main/java/mng/Module4Bean.java b/core-it-suite/src/test/resources/mng-3259/module4/src/main/java/mng/Module4Bean.java index 40c5de6..fb91a3e 100644 --- a/core-it-suite/src/test/resources/mng-3259/module4/src/main/java/mng/Module4Bean.java +++ b/core-it-suite/src/test/resources/mng-3259/module4/src/main/java/mng/Module4Bean.java @@ -9,28 +9,28 @@ import javax.ejb.SessionContext; */ public class Module4Bean implements SessionBean { - public void ejbCreate() throws CreateException - { - } + public void ejbCreate() throws CreateException + { + } - public void ejbRemove() - { - } + public void ejbRemove() + { + } - public void ejbActivate() - { - } + public void ejbActivate() + { + } - public void ejbPassivate() - { - } + public void ejbPassivate() + { + } - public void setSessionContext(SessionContext sessionContext) - { - } + public void setSessionContext(SessionContext sessionContext) + { + } - public boolean doIt() - { - return true; - } + public boolean doIt() + { + return true; + } } diff --git a/core-it-suite/src/test/resources/mng-3259/module5/src/main/java/mng/Module5.java b/core-it-suite/src/test/resources/mng-3259/module5/src/main/java/mng/Module5.java index b7bd62c..4fb0b26 100644 --- a/core-it-suite/src/test/resources/mng-3259/module5/src/main/java/mng/Module5.java +++ b/core-it-suite/src/test/resources/mng-3259/module5/src/main/java/mng/Module5.java @@ -2,5 +2,5 @@ package mng; public class Module5 { - private Module4 m4; + private Module4 m4; } diff --git a/core-it-suite/src/test/resources/mng-3259/module5/src/test/java/mng/Module5Test.java b/core-it-suite/src/test/resources/mng-3259/module5/src/test/java/mng/Module5Test.java index e120dfa..0197166 100644 --- a/core-it-suite/src/test/resources/mng-3259/module5/src/test/java/mng/Module5Test.java +++ b/core-it-suite/src/test/resources/mng-3259/module5/src/test/java/mng/Module5Test.java @@ -4,17 +4,20 @@ import java.util.Calendar; public class Module5Test extends XStreamTestCase { - private Calendar cal = Calendar.getInstance(); + private Calendar cal = Calendar.getInstance(); - protected Object getObject() { - return cal; - } + protected Object getObject() + { + return cal; + } - protected String getXML() { - return Module3TestUtil.getCalendarAsXML(cal); - } + protected String getXML() + { + return Module3TestUtil.getCalendarAsXML( cal ); + } - public void testJMockAvailable() { - assertNotNull(mock(Module4.class)); - } + public void testJMockAvailable() + { + assertNotNull( mock( Module4.class ) ); + } } diff --git a/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/main/java/org/apache/maven/its/mng3506/App.java b/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/main/java/org/apache/maven/its/mng3506/App.java index 027cdbd..a713f69 100644 --- a/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/main/java/org/apache/maven/its/mng3506/App.java +++ b/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/main/java/org/apache/maven/its/mng3506/App.java @@ -1,20 +1,20 @@ /* - 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 + 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 + 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. + 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. */ package org.apache.maven.its.mng3506; diff --git a/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/test/java/org/apache/maven/its/mng3506/AppTest.java b/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/test/java/org/apache/maven/its/mng3506/AppTest.java index d2f3c7f..1c1abf1 100644 --- a/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/test/java/org/apache/maven/its/mng3506/AppTest.java +++ b/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/test/java/org/apache/maven/its/mng3506/AppTest.java @@ -1,20 +1,20 @@ /* - 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 + 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 + 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. + 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. */ package org.apache.maven.its.mng3506; diff --git a/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/main/java/org/apache/maven/its/mng3506/App.java b/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/main/java/org/apache/maven/its/mng3506/App.java index 027cdbd..a713f69 100644 --- a/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/main/java/org/apache/maven/its/mng3506/App.java +++ b/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/main/java/org/apache/maven/its/mng3506/App.java @@ -1,20 +1,20 @@ /* - 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 + 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 + 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. + 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. */ package org.apache.maven.its.mng3506; diff --git a/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/test/java/org/apache/maven/its/mng3506/AppTest.java b/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/test/java/org/apache/maven/its/mng3506/AppTest.java index d2f3c7f..1c1abf1 100644 --- a/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/test/java/org/apache/maven/its/mng3506/AppTest.java +++ b/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/test/java/org/apache/maven/its/mng3506/AppTest.java @@ -1,20 +1,20 @@ /* - 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 + 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 + 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. + 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. */ package org.apache.maven.its.mng3506; diff --git a/core-it-suite/src/test/resources/mng-3694/maven-mng3694-plugin/src/main/java/plugin/MyMojo.java b/core-it-suite/src/test/resources/mng-3694/maven-mng3694-plugin/src/main/java/plugin/MyMojo.java index 250f37c..25fc70e 100644 --- a/core-it-suite/src/test/resources/mng-3694/maven-mng3694-plugin/src/main/java/plugin/MyMojo.java +++ b/core-it-suite/src/test/resources/mng-3694/maven-mng3694-plugin/src/main/java/plugin/MyMojo.java @@ -30,24 +30,24 @@ import org.apache.maven.project.MavenProject; public class MyMojo extends AbstractMojo { - - /** - * Not used, just an offset to place reactorProjects in the middle. - * @parameter default-value="${project.build.directory}" - */ - private String outputDirectory; - + + /** + * Not used, just an offset to place reactorProjects in the middle. + * @parameter default-value="${project.build.directory}" + */ + private String outputDirectory; + /** * @parameter expression="${reactorProjects}" * @required */ private List reactorProjects; - /** - * Not used, just an offset to place reactorProjects in the middle. - * @parameter default-value="${project.build.directory}" - */ - private String outputDirectory2; + /** + * Not used, just an offset to place reactorProjects in the middle. + * @parameter default-value="${project.build.directory}" + */ + private String outputDirectory2; public void execute() throws MojoExecutionException diff --git a/core-it-suite/src/test/resources/mng-4270/src/main/java/org/apache/maven/its/mng3506/App.java b/core-it-suite/src/test/resources/mng-4270/src/main/java/org/apache/maven/its/mng3506/App.java index 027cdbd..a713f69 100644 --- a/core-it-suite/src/test/resources/mng-4270/src/main/java/org/apache/maven/its/mng3506/App.java +++ b/core-it-suite/src/test/resources/mng-4270/src/main/java/org/apache/maven/its/mng3506/App.java @@ -1,20 +1,20 @@ /* - 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 + 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 + 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. + 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. */ package org.apache.maven.its.mng3506; diff --git a/core-it-suite/src/test/resources/mng-4270/src/test/java/org/apache/maven/its/mng3506/AppTest.java b/core-it-suite/src/test/resources/mng-4270/src/test/java/org/apache/maven/its/mng3506/AppTest.java index d2f3c7f..1c1abf1 100644 --- a/core-it-suite/src/test/resources/mng-4270/src/test/java/org/apache/maven/its/mng3506/AppTest.java +++ b/core-it-suite/src/test/resources/mng-4270/src/test/java/org/apache/maven/its/mng3506/AppTest.java @@ -1,20 +1,20 @@ /* - 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 + 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 + 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. + 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. */ package org.apache.maven.its.mng3506; diff --git a/core-it-suite/src/test/resources/mng-4347/src/main/java/org/apache/maven/it/mng4347/App.java b/core-it-suite/src/test/resources/mng-4347/src/main/java/org/apache/maven/it/mng4347/App.java index 81ca429..89a8764 100644 --- a/core-it-suite/src/test/resources/mng-4347/src/main/java/org/apache/maven/it/mng4347/App.java +++ b/core-it-suite/src/test/resources/mng-4347/src/main/java/org/apache/maven/it/mng4347/App.java @@ -23,7 +23,7 @@ public class App { public static void main( String[] args ) { - Importing.main( args ); + Importing.main( args ); System.out.println( "Hello World!" ); } } diff --git a/core-it-suite/src/test/resources/mng-5581-lifecycle-mapping-delegate/basic/test/java/org/apache/maven/its/mng5581/lifecyclemappingdelegate/basic/test/BasicTest.java b/core-it-suite/src/test/resources/mng-5581-lifecycle-mapping-delegate/basic/test/java/org/apache/maven/its/mng5581/lifecyclemappingdelegate/basic/test/BasicTest.java index 03eb201..519c5b1 100644 --- a/core-it-suite/src/test/resources/mng-5581-lifecycle-mapping-delegate/basic/test/java/org/apache/maven/its/mng5581/lifecyclemappingdelegate/basic/test/BasicTest.java +++ b/core-it-suite/src/test/resources/mng-5581-lifecycle-mapping-delegate/basic/test/java/org/apache/maven/its/mng5581/lifecyclemappingdelegate/basic/test/BasicTest.java @@ -24,10 +24,11 @@ import org.apache.maven.its.mng5581.lifecyclemappingdelegate.basic.BasicClass; import org.junit.Assert; import org.junit.Test; -public class ModuleBTest { - - @Test - public void testBasic() { - Assert.assertNotNull(new BasicClass().toString()); - } +public class ModuleBTest +{ + @Test + public void testBasic() + { + Assert.assertNotNull(new BasicClass().toString()); + } }
