[MNG-7056] Replace tabs in IT files

This commit is contained in:
Michael Osipov 2021-07-04 10:12:42 +02:00
parent 9d07652019
commit 95fa979aed
100 changed files with 2322 additions and 2317 deletions

View File

@ -86,10 +86,10 @@ public void testitMNG3642 ()
*/ */
verifier.resetStreams(); verifier.resetStreams();
File first = new File( testDir, "target/test-classes/one.txt" ); File first = new File( testDir, "target/test-classes/one.txt" );
assertTrue( "First resource file was not present: " + first, first.exists() ); assertTrue( "First resource file was not present: " + first, first.exists() );
File second = new File( testDir, "target/test-classes/two.txt" ); File second = new File( testDir, "target/test-classes/two.txt" );
assertTrue( "Second resource file was not present: " + second, second.exists() ); assertTrue( "Second resource file was not present: " + second, second.exists() );
} }
} }

View File

@ -47,7 +47,7 @@ under the License.
<dependency> <dependency>
<groupId>org.apache.geronimo.specs</groupId> <groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jcdi_2.0_spec</artifactId> <artifactId>geronimo-jcdi_2.0_spec</artifactId>
<version>1.3</version> <version>1.3</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.groovy</groupId> <groupId>org.apache.groovy</groupId>

View File

@ -66,17 +66,17 @@ under the License.
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven.shared</groupId> <groupId>org.apache.maven.shared</groupId>
<artifactId>maven-common-artifact-filters</artifactId> <artifactId>maven-common-artifact-filters</artifactId>
<version>3.1.0</version> <version>3.1.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven.shared</groupId> <groupId>org.apache.maven.shared</groupId>
<artifactId>maven-artifact-transfer</artifactId> <artifactId>maven-artifact-transfer</artifactId>
<version>0.11.0</version> <version>0.11.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.ow2.asm</groupId> <groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId> <artifactId>asm</artifactId>
<version>7.2</version> <version>7.2</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -29,7 +29,7 @@ under the License.
<name>Maven Integration Test :: it0038</name> <name>Maven Integration Test :: it0038</name>
<description> <description>
Test building project from outside the project directory using '-f' option Test building project from outside the project directory using '-f' option
</description> </description>
<build> <build>

View File

@ -21,19 +21,19 @@
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-verifier-plugin</artifactId> <artifactId>maven-verifier-plugin</artifactId>
<configuration> <configuration>
<verificationFile>src/test/verifier/verifications-test.xml</verificationFile> <verificationFile>src/test/verifier/verifications-test.xml</verificationFile>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<phase>verify</phase> <phase>verify</phase>
<goals> <goals>
<goal>verify</goal> <goal>verify</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -1,19 +1,19 @@
<settings> <settings>
<profiles> <profiles>
<profile> <profile>
<id>test-repo</id> <id>test-repo</id>
<repositories> <repositories>
<repository> <repository>
<id>test-repo</id> <id>test-repo</id>
<url>file:../../test-repo</url> <url>file:../../test-repo</url>
</repository> </repository>
</repositories> </repositories>
</profile> </profile>
</profiles> </profiles>
<activeProfiles> <activeProfiles>
<activeProfile>test-repo</activeProfile> <activeProfile>test-repo</activeProfile>
</activeProfiles> </activeProfiles>
</settings> </settings>

View File

@ -8,7 +8,7 @@
<name>Maven Integration Test :: MNG-2196</name> <name>Maven Integration Test :: MNG-2196</name>
<description> <description>
Verify that multimodule builds where one project references another as Verify that multimodule builds where one project references another as
a parent can build, even if that parent is not correctly referenced by a parent can build, even if that parent is not correctly referenced by
&lt;relativePath/&gt; and is not in the local repository. &lt;relativePath/&gt; and is not in the local repository.
</description> </description>

View File

@ -4,9 +4,9 @@
public class Issue2289 public class Issue2289
{ {
public static void main(final String[] args) public static void main(final String[] args)
{ {
TestCase tc = new TestCase("Dummy") {}; TestCase tc = new TestCase("Dummy") {};
System.exit(tc == null ? -1 : 0); System.exit(tc == null ? -1 : 0);
} }
} }

View File

@ -28,19 +28,19 @@
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-verifier-plugin</artifactId> <artifactId>maven-verifier-plugin</artifactId>
<configuration> <configuration>
<verificationFile>src/test/verifier/verifications-test.xml</verificationFile> <verificationFile>src/test/verifier/verifications-test.xml</verificationFile>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<phase>verify</phase> <phase>verify</phase>
<goals> <goals>
<goal>verify</goal> <goal>verify</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -11,6 +11,6 @@ public class App
{ {
public static void main( String[] args ) public static void main( String[] args )
{ {
List<String> stuff = new ArrayList<String>(); List<String> stuff = new ArrayList<String>();
} }
} }

View File

@ -11,6 +11,6 @@ public class Diamond
{ {
public static void main( String[] args ) public static void main( String[] args )
{ {
List<String> stuff = new ArrayList<>(); List<String> stuff = new ArrayList<>();
} }
} }

View File

@ -4,12 +4,12 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent> <parent>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>parent</artifactId> <artifactId>parent</artifactId>
<version>1-SNAPSHOT</version> <version>1-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module1-XXX</artifactId> <artifactId>mng-module1-XXX</artifactId>
@ -26,12 +26,12 @@
<dependency> <dependency>
<groupId>jmock</groupId> <groupId>jmock</groupId>
<artifactId>jmock</artifactId> <artifactId>jmock</artifactId>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -6,18 +6,19 @@
public abstract class XStreamTestCase extends MockObjectTestCase public abstract class XStreamTestCase extends MockObjectTestCase
{ {
private XStream xstream; private XStream xstream;
public void setUp() public void setUp()
{ {
xstream = new XStream(); xstream = new XStream();
} }
public void testToXml() { public void testToXml()
String xml = xstream.toXML(getObject()); {
assertEquals(getXML(), xml); String xml = xstream.toXML(getObject());
} assertEquals(getXML(), xml);
}
protected abstract Object getObject(); protected abstract Object getObject();
protected abstract String getXML(); protected abstract String getXML();
} }

View File

@ -4,12 +4,12 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent> <parent>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>parent</artifactId> <artifactId>parent</artifactId>
<version>1-SNAPSHOT</version> <version>1-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module2-XXX</artifactId> <artifactId>mng-module2-XXX</artifactId>
@ -23,10 +23,10 @@
<groupId>com.thoughtworks.xstream</groupId> <groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId> <artifactId>xstream</artifactId>
</dependency> </dependency>
<!-- for test --> <!-- for test -->
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module1-XXX</artifactId> <artifactId>mng-module1-XXX</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -4,5 +4,5 @@
public class Module2 public class Module2
{ {
XStream xstream; XStream xstream;
} }

View File

@ -4,12 +4,12 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent> <parent>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>parent</artifactId> <artifactId>parent</artifactId>
<version>1-SNAPSHOT</version> <version>1-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module3-XXX</artifactId> <artifactId>mng-module3-XXX</artifactId>
@ -18,32 +18,32 @@
<name>Module-3 XXX</name> <name>Module-3 XXX</name>
<description><![CDATA[Module 3 of issue XXX.]]></description> <description><![CDATA[Module 3 of issue XXX.]]></description>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<goals> <goals>
<goal>test-jar</goal> <goal>test-jar</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module2-XXX</artifactId> <artifactId>mng-module2-XXX</artifactId>
</dependency> </dependency>
<!-- for test --> <!-- for test -->
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module1-XXX</artifactId> <artifactId>mng-module1-XXX</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -2,5 +2,5 @@
public class Module3 extends Module2 public class Module3 extends Module2
{ {
public static String MODULE = "3"; public static String MODULE = "3";
} }

View File

@ -6,9 +6,9 @@
public class Module3TestUtil public class Module3TestUtil
{ {
public static String getCalendarAsXML(Calendar cal) public static String getCalendarAsXML(Calendar cal)
{ {
XStream xstream = new XStream(new DomDriver()); XStream xstream = new XStream(new DomDriver());
return xstream.toXML(cal); return xstream.toXML(cal);
} }
} }

View File

@ -4,12 +4,12 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent> <parent>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>parent</artifactId> <artifactId>parent</artifactId>
<version>1-SNAPSHOT</version> <version>1-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module4-XXX</artifactId> <artifactId>mng-module4-XXX</artifactId>
@ -18,42 +18,42 @@
<name>Module-4 XXX</name> <name>Module-4 XXX</name>
<description><![CDATA[Module 4 of issue XXX.]]></description> <description><![CDATA[Module 4 of issue XXX.]]></description>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<artifactId>maven-ejb-plugin</artifactId> <artifactId>maven-ejb-plugin</artifactId>
<configuration> <configuration>
<generateClient>true</generateClient> <generateClient>true</generateClient>
<clientExcludes> <clientExcludes>
<clientExclude>**/*Bean.class</clientExclude> <clientExclude>**/*Bean.class</clientExclude>
</clientExcludes> </clientExcludes>
<archive> <archive>
<addMavenDescriptor>false</addMavenDescriptor> <addMavenDescriptor>false</addMavenDescriptor>
<manifest> <manifest>
<addClasspath>true</addClasspath> <addClasspath>true</addClasspath>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module3-XXX</artifactId> <artifactId>mng-module3-XXX</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>jboss</groupId> <groupId>jboss</groupId>
<artifactId>jboss-j2ee</artifactId> <artifactId>jboss-j2ee</artifactId>
</dependency> </dependency>
<!-- for test --> <!-- for test -->
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module1-XXX</artifactId> <artifactId>mng-module1-XXX</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -10,6 +10,6 @@
*/ */
public interface Module4 extends EJBObject public interface Module4 extends EJBObject
{ {
public boolean doIt() throws RemoteException; public boolean doIt() throws RemoteException;
} }

View File

@ -9,28 +9,28 @@
*/ */
public class Module4Bean implements SessionBean 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() public boolean doIt()
{ {
return true; return true;
} }
} }

View File

@ -4,56 +4,56 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent> <parent>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>parent</artifactId> <artifactId>parent</artifactId>
<version>1-SNAPSHOT</version> <version>1-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module5-XXX</artifactId> <artifactId>mng-module5-XXX</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Module-5 XXX</name> <name>Module-5 XXX</name>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<description><![CDATA[Module 5 of issue XXX.]]></description> <description><![CDATA[Module 5 of issue XXX.]]></description>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>jboss</groupId> <groupId>jboss</groupId>
<artifactId>jboss-j2ee</artifactId> <artifactId>jboss-j2ee</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module3-XXX</artifactId> <artifactId>mng-module3-XXX</artifactId>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>com.thoughtworks.xstream</groupId> <groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId> <artifactId>xstream</artifactId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module4-XXX</artifactId> <artifactId>mng-module4-XXX</artifactId>
<type>ejb-client</type> <type>ejb-client</type>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>com.thoughtworks.xstream</groupId> <groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId> <artifactId>xstream</artifactId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<!-- for test --> <!-- for test -->
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module1-XXX</artifactId> <artifactId>mng-module1-XXX</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module3-XXX</artifactId> <artifactId>mng-module3-XXX</artifactId>
<type>test-jar</type> <type>test-jar</type>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -2,5 +2,5 @@
public class Module5 public class Module5
{ {
private Module4 m4; private Module4 m4;
} }

View File

@ -4,17 +4,20 @@
public class Module5Test extends XStreamTestCase public class Module5Test extends XStreamTestCase
{ {
private Calendar cal = Calendar.getInstance(); private Calendar cal = Calendar.getInstance();
protected Object getObject() { protected Object getObject()
return cal; {
} return cal;
}
protected String getXML() { protected String getXML()
return Module3TestUtil.getCalendarAsXML(cal); {
} return Module3TestUtil.getCalendarAsXML( cal );
}
public void testJMockAvailable() { public void testJMockAvailable()
assertNotNull(mock(Module4.class)); {
} assertNotNull( mock( Module4.class ) );
}
} }

View File

@ -12,90 +12,90 @@
<version>1-SNAPSHOT</version> <version>1-SNAPSHOT</version>
<inceptionYear>2007</inceptionYear> <inceptionYear>2007</inceptionYear>
<build> <build>
<pluginManagement> <pluginManagement>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.3</version> <version>2.3</version>
<configuration> <configuration>
<forkMode>once</forkMode> <forkMode>once</forkMode>
<workingDirectory>${basedir}</workingDirectory> <workingDirectory>${basedir}</workingDirectory>
<childDelegation>false</childDelegation> <childDelegation>false</childDelegation>
<useFile>false</useFile> <useFile>false</useFile>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
</build> </build>
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module1-XXX</artifactId> <artifactId>mng-module1-XXX</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module2-XXX</artifactId> <artifactId>mng-module2-XXX</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module3-XXX</artifactId> <artifactId>mng-module3-XXX</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module3-XXX</artifactId> <artifactId>mng-module3-XXX</artifactId>
<type>test-jar</type> <type>test-jar</type>
<scope>test</scope> <scope>test</scope>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module4-XXX</artifactId> <artifactId>mng-module4-XXX</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<type>ejb</type> <type>ejb</type>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.codehaus.jira.mng.XXX</groupId> <groupId>org.codehaus.jira.mng.XXX</groupId>
<artifactId>mng-module4-XXX</artifactId> <artifactId>mng-module4-XXX</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<type>ejb-client</type> <type>ejb-client</type>
</dependency> </dependency>
<dependency> <dependency>
<groupId>jboss</groupId> <groupId>jboss</groupId>
<artifactId>jboss-j2ee</artifactId> <artifactId>jboss-j2ee</artifactId>
<version>3.2.3</version> <version>3.2.3</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>xpp3</groupId> <groupId>xpp3</groupId>
<artifactId>xpp3_min</artifactId> <artifactId>xpp3_min</artifactId>
<version>1.1.3.4.O</version> <version>1.1.3.4.O</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.thoughtworks.xstream</groupId> <groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId> <artifactId>xstream</artifactId>
<version>1.4.15</version> <version>1.4.15</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>jmock</groupId> <groupId>jmock</groupId>
<artifactId>jmock</artifactId> <artifactId>jmock</artifactId>
<version>1.2.0</version> <version>1.2.0</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>3.8.2</version> <version>3.8.2</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
</project> </project>

View File

@ -1,20 +1,20 @@
/* /*
Licensed to the Apache Software Foundation (ASF) under one Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file or more contributor license agreements. See the NOTICE file
distributed with this work for additional information distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at 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, Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the KIND, either express or implied. See the License for the
specific language governing permissions and limitations specific language governing permissions and limitations
under the License. under the License.
*/ */
package org.apache.maven.its.mng3506; package org.apache.maven.its.mng3506;

View File

@ -1,20 +1,20 @@
/* /*
Licensed to the Apache Software Foundation (ASF) under one Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file or more contributor license agreements. See the NOTICE file
distributed with this work for additional information distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at 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, Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the KIND, either express or implied. See the License for the
specific language governing permissions and limitations specific language governing permissions and limitations
under the License. under the License.
*/ */
package org.apache.maven.its.mng3506; package org.apache.maven.its.mng3506;

View File

@ -1,20 +1,20 @@
/* /*
Licensed to the Apache Software Foundation (ASF) under one Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file or more contributor license agreements. See the NOTICE file
distributed with this work for additional information distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at 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, Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the KIND, either express or implied. See the License for the
specific language governing permissions and limitations specific language governing permissions and limitations
under the License. under the License.
*/ */
package org.apache.maven.its.mng3506; package org.apache.maven.its.mng3506;

View File

@ -1,20 +1,20 @@
/* /*
Licensed to the Apache Software Foundation (ASF) under one Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file or more contributor license agreements. See the NOTICE file
distributed with this work for additional information distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at 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, Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the KIND, either express or implied. See the License for the
specific language governing permissions and limitations specific language governing permissions and limitations
under the License. under the License.
*/ */
package org.apache.maven.its.mng3506; package org.apache.maven.its.mng3506;

View File

@ -25,9 +25,9 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId> <artifactId>maven-core</artifactId>
<version>2.0.9</version> <version>2.0.9</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -20,19 +20,19 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId> <artifactId>maven-project</artifactId>
<version>2.0.9</version> <version>2.0.9</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven.reporting</groupId> <groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-api</artifactId> <artifactId>maven-reporting-api</artifactId>
<version>2.0.9</version> <version>2.0.9</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven.reporting</groupId> <groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-impl</artifactId> <artifactId>maven-reporting-impl</artifactId>
<version>2.0.4.1</version> <version>2.0.4.1</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -20,9 +20,9 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId> <artifactId>maven-project</artifactId>
<version>2.0.9</version> <version>2.0.9</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -18,9 +18,9 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven.its.mng3693</groupId> <groupId>org.apache.maven.its.mng3693</groupId>
<artifactId>dep</artifactId> <artifactId>dep</artifactId>
<version>1</version> <version>1</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -20,9 +20,9 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId> <artifactId>maven-project</artifactId>
<version>2.0.9</version> <version>2.0.9</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -30,24 +30,24 @@
public class MyMojo public class MyMojo
extends AbstractMojo extends AbstractMojo
{ {
/** /**
* Not used, just an offset to place reactorProjects in the middle. * Not used, just an offset to place reactorProjects in the middle.
* @parameter default-value="${project.build.directory}" * @parameter default-value="${project.build.directory}"
*/ */
private String outputDirectory; private String outputDirectory;
/** /**
* @parameter expression="${reactorProjects}" * @parameter expression="${reactorProjects}"
* @required * @required
*/ */
private List reactorProjects; private List reactorProjects;
/** /**
* Not used, just an offset to place reactorProjects in the middle. * Not used, just an offset to place reactorProjects in the middle.
* @parameter default-value="${project.build.directory}" * @parameter default-value="${project.build.directory}"
*/ */
private String outputDirectory2; private String outputDirectory2;
public void execute() public void execute()
throws MojoExecutionException throws MojoExecutionException

View File

@ -20,14 +20,14 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId> <artifactId>maven-project</artifactId>
<version>2.0.9</version> <version>2.0.9</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven.reporting</groupId> <groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-impl</artifactId> <artifactId>maven-reporting-impl</artifactId>
<version>2.0.4.1</version> <version>2.0.4.1</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -19,9 +19,9 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId> <artifactId>maven-core</artifactId>
<version>2.0.9</version> <version>2.0.9</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -18,9 +18,9 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId> <artifactId>maven-project</artifactId>
<version>2.0.9</version> <version>2.0.9</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -11,7 +11,7 @@
<version>1</version> <version>1</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<modules> <modules>
<module>child</module> <module>child</module>
</modules> </modules>
<build> <build>

View File

@ -6,7 +6,7 @@
<version>1</version> <version>1</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<modules> <modules>
<module>child1</module> <module>child1</module>
<module>child2</module> <module>child2</module>
</modules> </modules>
</project> </project>

View File

@ -19,9 +19,9 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId> <artifactId>maven-project</artifactId>
<version>2.0.9</version> <version>2.0.9</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -6,6 +6,6 @@
<version>1</version> <version>1</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<modules> <modules>
<module>child</module> <module>child</module>
</modules> </modules>
</project> </project>

View File

@ -19,9 +19,9 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId> <artifactId>maven-project</artifactId>
<version>2.0.9</version> <version>2.0.9</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -24,9 +24,9 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven.reporting</groupId> <groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-impl</artifactId> <artifactId>maven-reporting-impl</artifactId>
<version>2.0.4.1</version> <version>2.0.4.1</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -6,8 +6,8 @@
<version>1</version> <version>1</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<modules> <modules>
<module>maven-mng3743-check-plugin</module> <module>maven-mng3743-check-plugin</module>
<module>maven-mng3743-report-plugin</module> <module>maven-mng3743-report-plugin</module>
<module>mng3743-lifecycle</module> <module>mng3743-lifecycle</module>
</modules> </modules>
</project> </project>

View File

@ -36,7 +36,7 @@ under the License.
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<!-- Depend on other plugin but using a version that is already released and not part of the reactor build --> <!-- Depend on other plugin but using a version that is already released and not part of the reactor build -->
<groupId>org.apache.maven.its.mng3814</groupId> <groupId>org.apache.maven.its.mng3814</groupId>
<artifactId>maven-mng3814b-plugin</artifactId> <artifactId>maven-mng3814b-plugin</artifactId>
<version>1.0</version> <version>1.0</version>
@ -47,7 +47,7 @@ under the License.
<reporting> <reporting>
<plugins> <plugins>
<plugin> <plugin>
<!-- Depend on other plugin but using a version that is already released and not part of the reactor build --> <!-- Depend on other plugin but using a version that is already released and not part of the reactor build -->
<groupId>org.apache.maven.its.mng3814</groupId> <groupId>org.apache.maven.its.mng3814</groupId>
<artifactId>maven-mng3814b-plugin</artifactId> <artifactId>maven-mng3814b-plugin</artifactId>
<version>1.0</version> <version>1.0</version>

View File

@ -4,11 +4,11 @@
<groupId>org.apache.maven.its.mng4148</groupId> <groupId>org.apache.maven.its.mng4148</groupId>
<artifactId>module</artifactId> <artifactId>module</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.apache.maven.its.mng4148</groupId> <groupId>org.apache.maven.its.mng4148</groupId>
<artifactId>dep</artifactId> <artifactId>dep</artifactId>
<version>${depVersion}</version> <version>${depVersion}</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -1,20 +1,20 @@
/* /*
Licensed to the Apache Software Foundation (ASF) under one Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file or more contributor license agreements. See the NOTICE file
distributed with this work for additional information distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at 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, Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the KIND, either express or implied. See the License for the
specific language governing permissions and limitations specific language governing permissions and limitations
under the License. under the License.
*/ */
package org.apache.maven.its.mng3506; package org.apache.maven.its.mng3506;

View File

@ -1,20 +1,20 @@
/* /*
Licensed to the Apache Software Foundation (ASF) under one Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file or more contributor license agreements. See the NOTICE file
distributed with this work for additional information distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at 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, Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the KIND, either express or implied. See the License for the
specific language governing permissions and limitations specific language governing permissions and limitations
under the License. under the License.
*/ */
package org.apache.maven.its.mng3506; package org.apache.maven.its.mng3506;

View File

@ -23,7 +23,7 @@ public class App
{ {
public static void main( String[] args ) public static void main( String[] args )
{ {
Importing.main( args ); Importing.main( args );
System.out.println( "Hello World!" ); System.out.println( "Hello World!" );
} }
} }

View File

@ -39,7 +39,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -47,7 +47,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -39,7 +39,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -47,7 +47,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -1,26 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project <project
xmlns="http://maven.apache.org/POM/4.0.0" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent> <parent>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>master</artifactId> <artifactId>master</artifactId>
<version>x-SNAPSHOT</version> <version>x-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>application</artifactId> <artifactId>application</artifactId>
<version>1-SNAPSHOT</version> <version>1-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Issue Application</name> <name>Issue Application</name>
<description><![CDATA[Demonstration of issue with application.]]></description> <description><![CDATA[Demonstration of issue with application.]]></description>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>delegate</artifactId> <artifactId>delegate</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -10,8 +10,8 @@
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>delegate</artifactId> <artifactId>delegate</artifactId>
<version>2-SNAPSHOT</version> <version>2-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Issue EJB Delegate</name> <name>Issue EJB Delegate</name>
<description><![CDATA[Demonstration of issue with EJB delegate.]]></description> <description><![CDATA[Demonstration of issue with EJB delegate.]]></description>
@ -19,9 +19,9 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>ejb</artifactId> <artifactId>ejb</artifactId>
<classifier>client</classifier> <classifier>client</classifier>
<type>ejb-client</type> <type>ejb-client</type>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -1,43 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project <project
xmlns="http://maven.apache.org/POM/4.0.0" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent> <parent>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>master</artifactId> <artifactId>master</artifactId>
<version>x-SNAPSHOT</version> <version>x-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>ejb</artifactId> <artifactId>ejb</artifactId>
<version>2-SNAPSHOT</version> <version>2-SNAPSHOT</version>
<packaging>ejb</packaging> <packaging>ejb</packaging>
<name>Issue EJB</name> <name>Issue EJB</name>
<description><![CDATA[Demonstration of issue with EJB client.]]></description> <description><![CDATA[Demonstration of issue with EJB client.]]></description>
<build> <build>
<pluginManagement> <pluginManagement>
<plugins> <plugins>
<plugin> <plugin>
<artifactId>maven-ejb-plugin</artifactId> <artifactId>maven-ejb-plugin</artifactId>
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>
<addClasspath>true</addClasspath> <addClasspath>true</addClasspath>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
</build> </build>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>commons-lang</groupId> <groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId> <artifactId>commons-lang</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project <project
xmlns="http://maven.apache.org/POM/4.0.0" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent> <parent>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>master</artifactId> <artifactId>master</artifactId>
<version>1</version> <version>1</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>delegate</artifactId> <artifactId>delegate</artifactId>
<version>1</version> <version>1</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Issue EJB Delegate</name> <name>Issue EJB Delegate</name>
<description><![CDATA[Demonstration of issue with EJB delegate.]]></description> <description><![CDATA[Demonstration of issue with EJB delegate.]]></description>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>ejb</artifactId> <artifactId>ejb</artifactId>
<classifier>client</classifier> <classifier>client</classifier>
<type>ejb-client</type> <type>ejb-client</type>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -1,43 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project <project
xmlns="http://maven.apache.org/POM/4.0.0" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent> <parent>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>master</artifactId> <artifactId>master</artifactId>
<version>1</version> <version>1</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>ejb</artifactId> <artifactId>ejb</artifactId>
<version>1</version> <version>1</version>
<packaging>ejb</packaging> <packaging>ejb</packaging>
<name>Issue EJB</name> <name>Issue EJB</name>
<description><![CDATA[Demonstration of issue with EJB client.]]></description> <description><![CDATA[Demonstration of issue with EJB client.]]></description>
<build> <build>
<pluginManagement> <pluginManagement>
<plugins> <plugins>
<plugin> <plugin>
<artifactId>maven-ejb-plugin</artifactId> <artifactId>maven-ejb-plugin</artifactId>
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>
<addClasspath>true</addClasspath> <addClasspath>true</addClasspath>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
</build> </build>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>commons-lang</groupId> <groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId> <artifactId>commons-lang</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -1,256 +1,256 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<!-- Define group, artifact and project type --> <!-- Define group, artifact and project type -->
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>master</artifactId> <artifactId>master</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<!-- Describe the project --> <!-- Describe the project -->
<name>Master Project</name> <name>Master Project</name>
<version>1</version> <version>1</version>
<description>Master project with global settings.</description> <description>Master project with global settings.</description>
<!-- Minimum versions to use this POM --> <!-- Minimum versions to use this POM -->
<prerequisites> <prerequisites>
<maven>2.2.1</maven> <maven>2.2.1</maven>
</prerequisites> </prerequisites>
<!-- Global build settings --> <!-- Global build settings -->
<build> <build>
<pluginManagement> <pluginManagement>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<version>${version.org.apache.maven.plugins.assembly}</version> <version>${version.org.apache.maven.plugins.assembly}</version>
<extensions>true</extensions> <extensions>true</extensions>
<configuration> <configuration>
<overWriteReleases>false</overWriteReleases> <overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots> <overWriteSnapshots>true</overWriteSnapshots>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId> <artifactId>maven-clean-plugin</artifactId>
<version>${version.org.apache.maven.plugins.clean}</version> <version>${version.org.apache.maven.plugins.clean}</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>${version.org.apache.maven.plugins.compiler}</version> <version>${version.org.apache.maven.plugins.compiler}</version>
<extensions>true</extensions> <extensions>true</extensions>
<configuration> <configuration>
<source>${java.version.source}</source> <source>${java.version.source}</source>
<target>${java.version.target}</target> <target>${java.version.target}</target>
<encoding>${project.build.sourceEncoding}</encoding> <encoding>${project.build.sourceEncoding}</encoding>
<optimize>false</optimize> <optimize>false</optimize>
<debug>true</debug> <debug>true</debug>
<showDeprecation>true</showDeprecation> <showDeprecation>true</showDeprecation>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId>
<version>${version.org.apache.maven.plugins.dependency}</version> <version>${version.org.apache.maven.plugins.dependency}</version>
<extensions>true</extensions> <extensions>true</extensions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId> <artifactId>maven-deploy-plugin</artifactId>
<version>${version.org.apache.maven.plugins.deploy}</version> <version>${version.org.apache.maven.plugins.deploy}</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId> <artifactId>maven-ear-plugin</artifactId>
<version>${version.org.apache.maven.plugins.ear}</version> <version>${version.org.apache.maven.plugins.ear}</version>
<configuration> <configuration>
<defaultJavaBundleDir>/</defaultJavaBundleDir> <defaultJavaBundleDir>/</defaultJavaBundleDir>
<displayName>${project.name}</displayName> <displayName>${project.name}</displayName>
<archive> <archive>
<addMavenDescriptor>false</addMavenDescriptor> <addMavenDescriptor>false</addMavenDescriptor>
<manifest> <manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ejb-plugin</artifactId> <artifactId>maven-ejb-plugin</artifactId>
<version>${version.org.apache.maven.plugins.ejb}</version> <version>${version.org.apache.maven.plugins.ejb}</version>
<configuration> <configuration>
<generateClient>true</generateClient> <generateClient>true</generateClient>
<ejbVersion>${java.ejb.version}</ejbVersion> <ejbVersion>${java.ejb.version}</ejbVersion>
<clientExcludes> <clientExcludes>
<clientExclude>META-INF/*.xml</clientExclude> <clientExclude>META-INF/*.xml</clientExclude>
<clientExclude>**/ejb/*Bean.class</clientExclude> <clientExclude>**/ejb/*Bean.class</clientExclude>
</clientExcludes> </clientExcludes>
<archive> <archive>
<addMavenDescriptor>false</addMavenDescriptor> <addMavenDescriptor>false</addMavenDescriptor>
<manifest> <manifest>
<addClasspath>true</addClasspath> <addClasspath>true</addClasspath>
<useUniqueVersions>false</useUniqueVersions> <useUniqueVersions>false</useUniqueVersions>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId> <artifactId>maven-install-plugin</artifactId>
<version>${version.org.apache.maven.plugins.install}</version> <version>${version.org.apache.maven.plugins.install}</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>${version.org.apache.maven.plugins.jar}</version> <version>${version.org.apache.maven.plugins.jar}</version>
<configuration> <configuration>
<archive> <archive>
<addMavenDescriptor>false</addMavenDescriptor> <addMavenDescriptor>false</addMavenDescriptor>
<manifest> <manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
<version>${version.org.apache.maven.plugins.resources}</version> <version>${version.org.apache.maven.plugins.resources}</version>
<configuration> <configuration>
<!-- Workaround for bug reported with MRESOURCES-104 --> <!-- Workaround for bug reported with MRESOURCES-104 -->
<useDefaultDelimiters>false</useDefaultDelimiters> <useDefaultDelimiters>false</useDefaultDelimiters>
<delimiters> <delimiters>
<delimiter>${*}</delimiter> <delimiter>${*}</delimiter>
</delimiters> </delimiters>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
<version>${version.org.apache.maven.plugins.source}</version> <version>${version.org.apache.maven.plugins.source}</version>
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>package</phase> <phase>package</phase>
<goals> <goals>
<goal>jar-no-fork</goal> <goal>jar-no-fork</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
<configuration> <configuration>
<archive> <archive>
<addMavenDescriptor>false</addMavenDescriptor> <addMavenDescriptor>false</addMavenDescriptor>
<manifest> <manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>${version.org.apache.maven.plugins.surefire}</version> <version>${version.org.apache.maven.plugins.surefire}</version>
<extensions>true</extensions> <extensions>true</extensions>
<!-- We set a forkMode --> <!-- We set a forkMode -->
<configuration> <configuration>
<forkMode>once</forkMode> <forkMode>once</forkMode>
<argLine>-Xms64m -Xmx128m</argLine> <argLine>-Xms64m -Xmx128m</argLine>
<workingDirectory>${basedir}</workingDirectory> <workingDirectory>${basedir}</workingDirectory>
<childDelegation>false</childDelegation> <childDelegation>false</childDelegation>
<runOrder>random</runOrder> <runOrder>random</runOrder>
<useFile>false</useFile> <useFile>false</useFile>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId> <artifactId>build-helper-maven-plugin</artifactId>
<version>${version.org.codehaus.mojo.build-helper-plugin}</version> <version>${version.org.codehaus.mojo.build-helper-plugin}</version>
<extensions>true</extensions> <extensions>true</extensions>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
</build> </build>
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>application</artifactId> <artifactId>application</artifactId>
<version>${version.application}</version> <version>${version.application}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>delegate</artifactId> <artifactId>delegate</artifactId>
<version>${version.delegate}</version> <version>${version.delegate}</version>
</dependency> </dependency>
<!-- not required for example <!-- not required for example
<dependency> <dependency>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>ejb</artifactId> <artifactId>ejb</artifactId>
<version>${version.ejb}</version> <version>${version.ejb}</version>
<type>ejb</type> <type>ejb</type>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
--> -->
<dependency> <dependency>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>ejb</artifactId> <artifactId>ejb</artifactId>
<version>${version.ejb}</version> <version>${version.ejb}</version>
<classifier>client</classifier> <classifier>client</classifier>
<type>ejb-client</type> <type>ejb-client</type>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-lang</groupId> <groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId> <artifactId>commons-lang</artifactId>
<version>${version.commons-lang}</version> <version>${version.commons-lang}</version>
</dependency> </dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
<!-- Define properties for better consistency --> <!-- Define properties for better consistency -->
<properties> <properties>
<!-- ==== --> <!-- ==== -->
<!-- Java --> <!-- Java -->
<!-- === =--> <!-- === =-->
<java.version.source>1.6</java.version.source> <java.version.source>1.6</java.version.source>
<java.version.target>1.6</java.version.target> <java.version.target>1.6</java.version.target>
<java.ejb.version>2.1</java.ejb.version> <java.ejb.version>2.1</java.ejb.version>
<!-- ======= --> <!-- ======= -->
<!-- Plugins --> <!-- Plugins -->
<!-- ======= --> <!-- ======= -->
<version.org.apache.maven.plugins.assembly>2.2.1</version.org.apache.maven.plugins.assembly> <version.org.apache.maven.plugins.assembly>2.2.1</version.org.apache.maven.plugins.assembly>
<version.org.apache.maven.plugins.clean>2.4.1</version.org.apache.maven.plugins.clean> <version.org.apache.maven.plugins.clean>2.4.1</version.org.apache.maven.plugins.clean>
<version.org.apache.maven.plugins.compiler>2.3.2</version.org.apache.maven.plugins.compiler> <version.org.apache.maven.plugins.compiler>2.3.2</version.org.apache.maven.plugins.compiler>
<version.org.apache.maven.plugins.dependency>2.3</version.org.apache.maven.plugins.dependency> <version.org.apache.maven.plugins.dependency>2.3</version.org.apache.maven.plugins.dependency>
<version.org.apache.maven.plugins.deploy>2.7</version.org.apache.maven.plugins.deploy> <version.org.apache.maven.plugins.deploy>2.7</version.org.apache.maven.plugins.deploy>
<version.org.apache.maven.plugins.ear>2.6</version.org.apache.maven.plugins.ear> <version.org.apache.maven.plugins.ear>2.6</version.org.apache.maven.plugins.ear>
<version.org.apache.maven.plugins.ejb>2.3</version.org.apache.maven.plugins.ejb> <version.org.apache.maven.plugins.ejb>2.3</version.org.apache.maven.plugins.ejb>
<version.org.apache.maven.plugins.install>2.3.1</version.org.apache.maven.plugins.install> <version.org.apache.maven.plugins.install>2.3.1</version.org.apache.maven.plugins.install>
<version.org.apache.maven.plugins.jar>2.3.2</version.org.apache.maven.plugins.jar> <version.org.apache.maven.plugins.jar>2.3.2</version.org.apache.maven.plugins.jar>
<version.org.apache.maven.plugins.resources>2.5</version.org.apache.maven.plugins.resources> <version.org.apache.maven.plugins.resources>2.5</version.org.apache.maven.plugins.resources>
<version.org.apache.maven.plugins.source>2.1.2</version.org.apache.maven.plugins.source> <version.org.apache.maven.plugins.source>2.1.2</version.org.apache.maven.plugins.source>
<version.org.apache.maven.plugins.surefire>2.9</version.org.apache.maven.plugins.surefire> <version.org.apache.maven.plugins.surefire>2.9</version.org.apache.maven.plugins.surefire>
<version.org.codehaus.mojo.build-helper-plugin>1.7</version.org.codehaus.mojo.build-helper-plugin> <version.org.codehaus.mojo.build-helper-plugin>1.7</version.org.codehaus.mojo.build-helper-plugin>
<!-- ============ --> <!-- ============ -->
<!-- Dependencies --> <!-- Dependencies -->
<!-- ============ --> <!-- ============ -->
<version.application>1-SNAPSHOT</version.application> <version.application>1-SNAPSHOT</version.application>
<version.delegate>1</version.delegate> <version.delegate>1</version.delegate>
<version.ejb>1</version.ejb> <version.ejb>1</version.ejb>
<version.commons-lang>2.4</version.commons-lang> <version.commons-lang>2.4</version.commons-lang>
<project.build.sourceEncoding>iso-8859-1</project.build.sourceEncoding> <project.build.sourceEncoding>iso-8859-1</project.build.sourceEncoding>
</properties> </properties>
</project> </project>

View File

@ -1,256 +1,256 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<!-- Define group, artifact and project type --> <!-- Define group, artifact and project type -->
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>master</artifactId> <artifactId>master</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<!-- Describe the project --> <!-- Describe the project -->
<name>Master Project</name> <name>Master Project</name>
<version>x-SNAPSHOT</version> <version>x-SNAPSHOT</version>
<description>Master project with global settings.</description> <description>Master project with global settings.</description>
<!-- Minimum versions to use this POM --> <!-- Minimum versions to use this POM -->
<prerequisites> <prerequisites>
<maven>2.2.1</maven> <maven>2.2.1</maven>
</prerequisites> </prerequisites>
<!-- Global build settings --> <!-- Global build settings -->
<build> <build>
<pluginManagement> <pluginManagement>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<version>${version.org.apache.maven.plugins.assembly}</version> <version>${version.org.apache.maven.plugins.assembly}</version>
<extensions>true</extensions> <extensions>true</extensions>
<configuration> <configuration>
<overWriteReleases>false</overWriteReleases> <overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots> <overWriteSnapshots>true</overWriteSnapshots>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId> <artifactId>maven-clean-plugin</artifactId>
<version>${version.org.apache.maven.plugins.clean}</version> <version>${version.org.apache.maven.plugins.clean}</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>${version.org.apache.maven.plugins.compiler}</version> <version>${version.org.apache.maven.plugins.compiler}</version>
<extensions>true</extensions> <extensions>true</extensions>
<configuration> <configuration>
<source>${java.version.source}</source> <source>${java.version.source}</source>
<target>${java.version.target}</target> <target>${java.version.target}</target>
<encoding>${project.build.sourceEncoding}</encoding> <encoding>${project.build.sourceEncoding}</encoding>
<optimize>false</optimize> <optimize>false</optimize>
<debug>true</debug> <debug>true</debug>
<showDeprecation>true</showDeprecation> <showDeprecation>true</showDeprecation>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId>
<version>${version.org.apache.maven.plugins.dependency}</version> <version>${version.org.apache.maven.plugins.dependency}</version>
<extensions>true</extensions> <extensions>true</extensions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId> <artifactId>maven-deploy-plugin</artifactId>
<version>${version.org.apache.maven.plugins.deploy}</version> <version>${version.org.apache.maven.plugins.deploy}</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId> <artifactId>maven-ear-plugin</artifactId>
<version>${version.org.apache.maven.plugins.ear}</version> <version>${version.org.apache.maven.plugins.ear}</version>
<configuration> <configuration>
<defaultJavaBundleDir>/</defaultJavaBundleDir> <defaultJavaBundleDir>/</defaultJavaBundleDir>
<displayName>${project.name}</displayName> <displayName>${project.name}</displayName>
<archive> <archive>
<addMavenDescriptor>false</addMavenDescriptor> <addMavenDescriptor>false</addMavenDescriptor>
<manifest> <manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ejb-plugin</artifactId> <artifactId>maven-ejb-plugin</artifactId>
<version>${version.org.apache.maven.plugins.ejb}</version> <version>${version.org.apache.maven.plugins.ejb}</version>
<configuration> <configuration>
<generateClient>true</generateClient> <generateClient>true</generateClient>
<ejbVersion>${java.ejb.version}</ejbVersion> <ejbVersion>${java.ejb.version}</ejbVersion>
<clientExcludes> <clientExcludes>
<clientExclude>META-INF/*.xml</clientExclude> <clientExclude>META-INF/*.xml</clientExclude>
<clientExclude>**/ejb/*Bean.class</clientExclude> <clientExclude>**/ejb/*Bean.class</clientExclude>
</clientExcludes> </clientExcludes>
<archive> <archive>
<addMavenDescriptor>false</addMavenDescriptor> <addMavenDescriptor>false</addMavenDescriptor>
<manifest> <manifest>
<addClasspath>true</addClasspath> <addClasspath>true</addClasspath>
<useUniqueVersions>false</useUniqueVersions> <useUniqueVersions>false</useUniqueVersions>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId> <artifactId>maven-install-plugin</artifactId>
<version>${version.org.apache.maven.plugins.install}</version> <version>${version.org.apache.maven.plugins.install}</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>${version.org.apache.maven.plugins.jar}</version> <version>${version.org.apache.maven.plugins.jar}</version>
<configuration> <configuration>
<archive> <archive>
<addMavenDescriptor>false</addMavenDescriptor> <addMavenDescriptor>false</addMavenDescriptor>
<manifest> <manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
<version>${version.org.apache.maven.plugins.resources}</version> <version>${version.org.apache.maven.plugins.resources}</version>
<configuration> <configuration>
<!-- Workaround for bug reported with MRESOURCES-104 --> <!-- Workaround for bug reported with MRESOURCES-104 -->
<useDefaultDelimiters>false</useDefaultDelimiters> <useDefaultDelimiters>false</useDefaultDelimiters>
<delimiters> <delimiters>
<delimiter>${*}</delimiter> <delimiter>${*}</delimiter>
</delimiters> </delimiters>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
<version>${version.org.apache.maven.plugins.source}</version> <version>${version.org.apache.maven.plugins.source}</version>
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>package</phase> <phase>package</phase>
<goals> <goals>
<goal>jar-no-fork</goal> <goal>jar-no-fork</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
<configuration> <configuration>
<archive> <archive>
<addMavenDescriptor>false</addMavenDescriptor> <addMavenDescriptor>false</addMavenDescriptor>
<manifest> <manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>${version.org.apache.maven.plugins.surefire}</version> <version>${version.org.apache.maven.plugins.surefire}</version>
<extensions>true</extensions> <extensions>true</extensions>
<!-- We set a forkMode --> <!-- We set a forkMode -->
<configuration> <configuration>
<forkMode>once</forkMode> <forkMode>once</forkMode>
<argLine>-Xms64m -Xmx128m</argLine> <argLine>-Xms64m -Xmx128m</argLine>
<workingDirectory>${basedir}</workingDirectory> <workingDirectory>${basedir}</workingDirectory>
<childDelegation>false</childDelegation> <childDelegation>false</childDelegation>
<runOrder>random</runOrder> <runOrder>random</runOrder>
<useFile>false</useFile> <useFile>false</useFile>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId> <artifactId>build-helper-maven-plugin</artifactId>
<version>${version.org.codehaus.mojo.build-helper-plugin}</version> <version>${version.org.codehaus.mojo.build-helper-plugin}</version>
<extensions>true</extensions> <extensions>true</extensions>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
</build> </build>
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>application</artifactId> <artifactId>application</artifactId>
<version>${version.application}</version> <version>${version.application}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>delegate</artifactId> <artifactId>delegate</artifactId>
<version>${version.delegate}</version> <version>${version.delegate}</version>
</dependency> </dependency>
<!-- not required for example <!-- not required for example
<dependency> <dependency>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>ejb</artifactId> <artifactId>ejb</artifactId>
<version>${version.ejb}</version> <version>${version.ejb}</version>
<type>ejb</type> <type>ejb</type>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
--> -->
<dependency> <dependency>
<groupId>bugs.maven.issue</groupId> <groupId>bugs.maven.issue</groupId>
<artifactId>ejb</artifactId> <artifactId>ejb</artifactId>
<version>${version.ejb}</version> <version>${version.ejb}</version>
<classifier>client</classifier> <classifier>client</classifier>
<type>ejb-client</type> <type>ejb-client</type>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-lang</groupId> <groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId> <artifactId>commons-lang</artifactId>
<version>${version.commons-lang}</version> <version>${version.commons-lang}</version>
</dependency> </dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
<!-- Define properties for better consistency --> <!-- Define properties for better consistency -->
<properties> <properties>
<!-- ==== --> <!-- ==== -->
<!-- Java --> <!-- Java -->
<!-- === =--> <!-- === =-->
<java.version.source>1.6</java.version.source> <java.version.source>1.6</java.version.source>
<java.version.target>1.6</java.version.target> <java.version.target>1.6</java.version.target>
<java.ejb.version>2.1</java.ejb.version> <java.ejb.version>2.1</java.ejb.version>
<!-- ======= --> <!-- ======= -->
<!-- Plugins --> <!-- Plugins -->
<!-- ======= --> <!-- ======= -->
<version.org.apache.maven.plugins.assembly>2.2.1</version.org.apache.maven.plugins.assembly> <version.org.apache.maven.plugins.assembly>2.2.1</version.org.apache.maven.plugins.assembly>
<version.org.apache.maven.plugins.clean>2.4.1</version.org.apache.maven.plugins.clean> <version.org.apache.maven.plugins.clean>2.4.1</version.org.apache.maven.plugins.clean>
<version.org.apache.maven.plugins.compiler>2.3.2</version.org.apache.maven.plugins.compiler> <version.org.apache.maven.plugins.compiler>2.3.2</version.org.apache.maven.plugins.compiler>
<version.org.apache.maven.plugins.dependency>2.3</version.org.apache.maven.plugins.dependency> <version.org.apache.maven.plugins.dependency>2.3</version.org.apache.maven.plugins.dependency>
<version.org.apache.maven.plugins.deploy>2.7</version.org.apache.maven.plugins.deploy> <version.org.apache.maven.plugins.deploy>2.7</version.org.apache.maven.plugins.deploy>
<version.org.apache.maven.plugins.ear>2.6</version.org.apache.maven.plugins.ear> <version.org.apache.maven.plugins.ear>2.6</version.org.apache.maven.plugins.ear>
<version.org.apache.maven.plugins.ejb>2.3</version.org.apache.maven.plugins.ejb> <version.org.apache.maven.plugins.ejb>2.3</version.org.apache.maven.plugins.ejb>
<version.org.apache.maven.plugins.install>2.3.1</version.org.apache.maven.plugins.install> <version.org.apache.maven.plugins.install>2.3.1</version.org.apache.maven.plugins.install>
<version.org.apache.maven.plugins.jar>2.3.2</version.org.apache.maven.plugins.jar> <version.org.apache.maven.plugins.jar>2.3.2</version.org.apache.maven.plugins.jar>
<version.org.apache.maven.plugins.resources>2.5</version.org.apache.maven.plugins.resources> <version.org.apache.maven.plugins.resources>2.5</version.org.apache.maven.plugins.resources>
<version.org.apache.maven.plugins.source>2.1.2</version.org.apache.maven.plugins.source> <version.org.apache.maven.plugins.source>2.1.2</version.org.apache.maven.plugins.source>
<version.org.apache.maven.plugins.surefire>2.9</version.org.apache.maven.plugins.surefire> <version.org.apache.maven.plugins.surefire>2.9</version.org.apache.maven.plugins.surefire>
<version.org.codehaus.mojo.build-helper-plugin>1.7</version.org.codehaus.mojo.build-helper-plugin> <version.org.codehaus.mojo.build-helper-plugin>1.7</version.org.codehaus.mojo.build-helper-plugin>
<!-- ============ --> <!-- ============ -->
<!-- Dependencies --> <!-- Dependencies -->
<!-- ============ --> <!-- ============ -->
<version.application>1-SNAPSHOT</version.application> <version.application>1-SNAPSHOT</version.application>
<version.delegate>1</version.delegate> <version.delegate>1</version.delegate>
<version.ejb>2-SNAPSHOT</version.ejb> <version.ejb>2-SNAPSHOT</version.ejb>
<version.commons-lang>2.6</version.commons-lang> <version.commons-lang>2.6</version.commons-lang>
<project.build.sourceEncoding>iso-8859-1</project.build.sourceEncoding> <project.build.sourceEncoding>iso-8859-1</project.build.sourceEncoding>
</properties> </properties>
</project> </project>

View File

@ -59,11 +59,11 @@ under the License.
<goal>resolve-one-dependency</goal> <goal>resolve-one-dependency</goal>
</goals> </goals>
<configuration> <configuration>
<scope>compile</scope> <scope>compile</scope>
<groupId>${project.groupId}</groupId> <groupId>${project.groupId}</groupId>
<artifactId>dependency</artifactId> <artifactId>dependency</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
<type>wsdl</type> <type>wsdl</type>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>

View File

@ -44,38 +44,38 @@ under the License.
<id>createWsdl</id> <id>createWsdl</id>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.its.plugins</groupId> <groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-artifact</artifactId> <artifactId>maven-it-plugin-artifact</artifactId>
<version>2.1-SNAPSHOT</version> <version>2.1-SNAPSHOT</version>
<executions> <executions>
<execution> <execution>
<id>attach-artifacts</id> <id>attach-artifacts</id>
<phase>generate-resources</phase> <phase>generate-resources</phase>
<goals> <goals>
<goal>attach</goal> <goal>attach</goal>
</goals> </goals>
<configuration> <configuration>
<attachedFile>notmuch.wsdl</attachedFile> <attachedFile>notmuch.wsdl</attachedFile>
<artifactType>wsdl</artifactType> <artifactType>wsdl</artifactType>
</configuration> </configuration>
</execution> </execution>
<execution> <execution>
<id>install</id> <id>install</id>
<phase>generate-resources</phase> <phase>generate-resources</phase>
<configuration> <configuration>
<pomFile>pom.xml</pomFile> <pomFile>pom.xml</pomFile>
<!-- borrow the POM as the main artifact --> <!-- borrow the POM as the main artifact -->
<mainFile>pom.xml</mainFile> <mainFile>pom.xml</mainFile>
</configuration> </configuration>
<goals> <goals>
<goal>set</goal> <goal>set</goal>
<goal>attach-pom</goal> <goal>attach-pom</goal>
<goal>install</goal> <goal>install</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</profile> </profile>

View File

@ -24,10 +24,11 @@
import org.junit.Assert; import org.junit.Assert;
import org.junit.Test; import org.junit.Test;
public class ModuleBTest { public class ModuleBTest
{
@Test @Test
public void testBasic() { public void testBasic()
Assert.assertNotNull(new BasicClass().toString()); {
} Assert.assertNotNull(new BasicClass().toString());
}
} }

View File

@ -39,7 +39,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -39,7 +39,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -47,7 +47,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -47,7 +47,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -39,7 +39,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -39,7 +39,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -47,7 +47,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -44,7 +44,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -44,7 +44,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -8,7 +8,7 @@
<packaging>pom</packaging> <packaging>pom</packaging>
<properties> <properties>
<enforcer.skip>true</enforcer.skip> <enforcer.skip>true</enforcer.skip>
</properties> </properties>
</project> </project>

View File

@ -8,7 +8,7 @@
<packaging>pom</packaging> <packaging>pom</packaging>
<properties> <properties>
<!-- <enforcer.skip>true</enforcer.skip> --> <!-- <enforcer.skip>true</enforcer.skip> -->
</properties> </properties>
</project> </project>

View File

@ -8,7 +8,7 @@
<packaging>pom</packaging> <packaging>pom</packaging>
<properties> <properties>
<enforcer.skip>true</enforcer.skip> <enforcer.skip>true</enforcer.skip>
</properties> </properties>
</project> </project>

View File

@ -22,11 +22,11 @@ under the License.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>mng-5895-ci-friendly-usage-with-property</groupId> <groupId>mng-5895-ci-friendly-usage-with-property</groupId>
<artifactId>base-project</artifactId> <artifactId>base-project</artifactId>
<version>${revision}</version> <version>${revision}</version>
</parent> </parent>
<artifactId>module-1</artifactId> <artifactId>module-1</artifactId>

View File

@ -1,33 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
license agreements. See the NOTICE file distributed with this work for additional license agreements. See the NOTICE file distributed with this work for additional
information regarding copyright ownership. The ASF licenses this file to information regarding copyright ownership. The ASF licenses this file to
you under the Apache License, Version 2.0 (the "License"); you may not use 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 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 Unless required the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS 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 OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. --> language governing permissions and limitations under the License. -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>mng-5895-ci-friendly-usage-with-property</groupId> <groupId>mng-5895-ci-friendly-usage-with-property</groupId>
<artifactId>base-project</artifactId> <artifactId>base-project</artifactId>
<version>${revision}</version> <version>${revision}</version>
</parent> </parent>
<artifactId>module-2</artifactId> <artifactId>module-2</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>mng-5895-ci-friendly-usage-with-property</groupId> <groupId>mng-5895-ci-friendly-usage-with-property</groupId>
<artifactId>module-1</artifactId> <artifactId>module-1</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -1,56 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
license agreements. See the NOTICE file distributed with this work for additional license agreements. See the NOTICE file distributed with this work for additional
information regarding copyright ownership. The ASF licenses this file to information regarding copyright ownership. The ASF licenses this file to
you under the Apache License, Version 2.0 (the "License"); you may not use 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 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 Unless required the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS 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 OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. --> language governing permissions and limitations under the License. -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>mng-5895-ci-friendly-usage-with-property</groupId> <groupId>mng-5895-ci-friendly-usage-with-property</groupId>
<artifactId>base-project</artifactId> <artifactId>base-project</artifactId>
<version>${revision}</version> <version>${revision}</version>
</parent> </parent>
<artifactId>module-3</artifactId> <artifactId>module-3</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>mng-5895-ci-friendly-usage-with-property</groupId> <groupId>mng-5895-ci-friendly-usage-with-property</groupId>
<artifactId>module-2</artifactId> <artifactId>module-2</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<id>assemblies</id> <id>assemblies</id>
<phase>package</phase> <phase>package</phase>
<goals> <goals>
<goal>single</goal> <goal>single</goal>
</goals> </goals>
<configuration> <configuration>
<descriptors> <descriptors>
<descriptor>jar-with-prod.xml</descriptor> <descriptor>jar-with-prod.xml</descriptor>
</descriptors> </descriptors>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -29,7 +29,7 @@ under the License.
<packaging>pom</packaging> <packaging>pom</packaging>
<properties> <properties>
<revision>1.3.0-SNAPSHOT</revision> <revision>1.3.0-SNAPSHOT</revision>
</properties> </properties>
<build> <build>
<pluginManagement><!-- see bootstrap for plugins versions --> <pluginManagement><!-- see bootstrap for plugins versions -->

View File

@ -22,11 +22,11 @@ under the License.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>mng-6057-check-reactor-order</groupId> <groupId>mng-6057-check-reactor-order</groupId>
<artifactId>base-project</artifactId> <artifactId>base-project</artifactId>
<version>${revision}</version> <version>${revision}</version>
</parent> </parent>
<artifactId>module-1</artifactId> <artifactId>module-1</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@ -23,11 +23,11 @@ under the License.
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>mng-6057-check-reactor-order</groupId> <groupId>mng-6057-check-reactor-order</groupId>
<artifactId>base-project</artifactId> <artifactId>base-project</artifactId>
<version>${revision}</version> <version>${revision}</version>
</parent> </parent>
<artifactId>module-2</artifactId> <artifactId>module-2</artifactId>
<dependencies> <dependencies>

View File

@ -31,7 +31,7 @@
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -22,11 +22,11 @@ under the License.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>mng-6090-ci-friendly</groupId> <groupId>mng-6090-ci-friendly</groupId>
<artifactId>base-project</artifactId> <artifactId>base-project</artifactId>
<version>${revision}</version> <version>${revision}</version>
</parent> </parent>
<artifactId>module-1</artifactId> <artifactId>module-1</artifactId>

View File

@ -1,33 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
license agreements. See the NOTICE file distributed with this work for additional license agreements. See the NOTICE file distributed with this work for additional
information regarding copyright ownership. The ASF licenses this file to information regarding copyright ownership. The ASF licenses this file to
you under the Apache License, Version 2.0 (the "License"); you may not use 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 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 Unless required the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS 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 OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. --> language governing permissions and limitations under the License. -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>mng-6090-ci-friendly</groupId> <groupId>mng-6090-ci-friendly</groupId>
<artifactId>base-project</artifactId> <artifactId>base-project</artifactId>
<version>${revision}</version> <version>${revision}</version>
</parent> </parent>
<artifactId>module-2</artifactId> <artifactId>module-2</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>mng-6090-ci-friendly</groupId> <groupId>mng-6090-ci-friendly</groupId>
<artifactId>module-1</artifactId> <artifactId>module-1</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -1,57 +1,57 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
license agreements. See the NOTICE file distributed with this work for additional license agreements. See the NOTICE file distributed with this work for additional
information regarding copyright ownership. The ASF licenses this file to information regarding copyright ownership. The ASF licenses this file to
you under the Apache License, Version 2.0 (the "License"); you may not use 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 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 Unless required the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS 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 OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. --> language governing permissions and limitations under the License. -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>mng-6090-ci-friendly</groupId> <groupId>mng-6090-ci-friendly</groupId>
<artifactId>base-project</artifactId> <artifactId>base-project</artifactId>
<version>${revision}</version> <version>${revision}</version>
</parent> </parent>
<artifactId>module-3</artifactId> <artifactId>module-3</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>mng-6090-ci-friendly</groupId> <groupId>mng-6090-ci-friendly</groupId>
<artifactId>module-2</artifactId> <artifactId>module-2</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version> <version>3.1.0</version>
<executions> <executions>
<execution> <execution>
<id>assemblies</id> <id>assemblies</id>
<phase>package</phase> <phase>package</phase>
<goals> <goals>
<goal>single</goal> <goal>single</goal>
</goals> </goals>
<configuration> <configuration>
<descriptors> <descriptors>
<descriptor>jar-with-prod.xml</descriptor> <descriptor>jar-with-prod.xml</descriptor>
</descriptors> </descriptors>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -29,7 +29,7 @@ under the License.
<packaging>pom</packaging> <packaging>pom</packaging>
<properties> <properties>
<revision>1.3.0-SNAPSHOT</revision> <revision>1.3.0-SNAPSHOT</revision>
</properties> </properties>
<modules> <modules>
<module>module-3</module> <module>module-3</module>

View File

@ -36,7 +36,7 @@ under the License.
</distributionManagement> </distributionManagement>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.its.mng6240</groupId> <groupId>org.apache.maven.its.mng6240</groupId>
<artifactId>plugin-extension</artifactId> <artifactId>plugin-extension</artifactId>
<version>1.0</version> <version>1.0</version>

View File

@ -18,9 +18,9 @@ under the License.
--><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd"> --><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.sonatype.mavenbook.multi</groupId> <groupId>org.sonatype.mavenbook.multi</groupId>
<artifactId>parent</artifactId> <artifactId>parent</artifactId>
<version>0.9-MNG6656-SNAPSHOT</version> <version>0.9-MNG6656-SNAPSHOT</version>
</parent> </parent>
<artifactId>simple-parent</artifactId> <artifactId>simple-parent</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@ -24,8 +24,8 @@ under the License.
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.sonatype.mavenbook.multi</groupId> <groupId>org.sonatype.mavenbook.multi</groupId>
<artifactId>parent</artifactId> <artifactId>parent</artifactId>
</parent> </parent>
<artifactId>simple-parent</artifactId> <artifactId>simple-parent</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@ -42,7 +42,7 @@
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -42,7 +42,7 @@
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -47,7 +47,7 @@
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -43,7 +43,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -43,7 +43,7 @@ under the License.
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -18,9 +18,9 @@ under the License.
--><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> --><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.sonatype.mavenbook.multi</groupId> <groupId>org.sonatype.mavenbook.multi</groupId>
<artifactId>parent</artifactId> <artifactId>parent</artifactId>
<version>0.9-MNG6957-SNAPSHOT</version> <version>0.9-MNG6957-SNAPSHOT</version>
</parent> </parent>
<artifactId>simple-parent</artifactId> <artifactId>simple-parent</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@ -18,9 +18,9 @@ under the License.
--><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> --><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.sonatype.mavenbook.multi</groupId> <groupId>org.sonatype.mavenbook.multi</groupId>
<artifactId>simple-parent</artifactId> <artifactId>simple-parent</artifactId>
<version>0.9-MNG6957-SNAPSHOT</version> <version>0.9-MNG6957-SNAPSHOT</version>
</parent> </parent>
<artifactId>utils-parent</artifactId> <artifactId>utils-parent</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@ -24,8 +24,8 @@ under the License.
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.sonatype.mavenbook.multi</groupId> <groupId>org.sonatype.mavenbook.multi</groupId>
<artifactId>parent</artifactId> <artifactId>parent</artifactId>
</parent> </parent>
<artifactId>simple-parent</artifactId> <artifactId>simple-parent</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@ -24,8 +24,8 @@ under the License.
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.sonatype.mavenbook.multi</groupId> <groupId>org.sonatype.mavenbook.multi</groupId>
<artifactId>simple-parent</artifactId> <artifactId>simple-parent</artifactId>
</parent> </parent>
<artifactId>utils-parent</artifactId> <artifactId>utils-parent</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>