<?xml version="1.0" encoding="UTF-8"?>
<!--

    Copyright 2021 OPS4J.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.

-->
<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>

	<parent>
		<groupId>org.ops4j.pax.web.samples</groupId>
		<artifactId>samples-war</artifactId>
		<version>8.0.1</version>
		<relativePath>../pom.xml</relativePath>
	</parent>

	<groupId>org.ops4j.pax.web.samples</groupId>
	<artifactId>war-most-complex</artifactId>
	<packaging>pom</packaging>

	<name>OPS4J Pax Web Complex WAR Samples</name>

	<modules>
		<!-- This bundle's package is imported by the WAB -->
		<module>container-bundle-1</module>
		<!-- This is a fragment of container-bundle-1 -->
		<module>container-fragment-1</module>
		<!-- This bundle is required by the fragment of the WAB -->
		<module>container-bundle-2</module>
		<!-- This is a fragment of container-bundle-2 -->
		<module>container-fragment-2</module>
		<!-- This bundle's package is imported by container-bundle-1 -->
		<module>container-bundle-3</module>
		<!-- This is a fragment of the WAB, which requires container-bundle-2 -->
		<module>the-wab-fragment</module>
		<!-- This is a JAR (not a bundle) that's put on the WAB's Bundle-ClassPath -->
		<module>the-wab-jar</module>
		<!-- This is the WAB itself, which has a fragment and imports packages from container-bundle-1 -->
		<module>the-wab-itself</module>
		<!-- This is the WAB itself, without war packaging, with a fragment and imports packages from container-bundle-1 -->
		<module>the-wab-itself-jar1</module>
		<!-- This is the WAB itself, without war packaging, with a fragment and imports packages from container-bundle-1 - different packaging method -->
		<module>the-wab-itself-jar2</module>
	</modules>

</project>
