<?xml version="1.0" encoding="UTF-8"?>
<!--
  Copyright (C) FuseSource, Inc.
  http://fusesource.com

  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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    
    <parent>
        <groupId>io.fabric8.runtime</groupId>
        <artifactId>fabric-runtime-container-tomcat</artifactId>
        <version>1.1.0.Beta2</version>
    </parent>

    <artifactId>fabric-runtime-container-console-webapp</artifactId>
    <name>Fabric8 :: Runtime :: Container :: Console :: WebApp</name>
    <packaging>war</packaging>

    <dependencies>
      <dependency>
       <groupId>javax.servlet</groupId>
       <artifactId>servlet-api</artifactId>
       <version>${servlet-api-version}</version>
       <scope>provided</scope>
     </dependency>

     <dependency>
       <groupId>io.hawt</groupId>
       <artifactId>hawtio-base</artifactId>
       <version>${hawtio-version}</version>
       <!--
         NOTE this WAR dependency type which enables this WAR to
         inherit all the plugins and content from the core hawtio-web WAR
       -->
       <type>war</type>
     </dependency>

      <dependency>
        <groupId>io.hawt</groupId>
        <artifactId>hawtio-json-schema-mbean</artifactId>
        <version>${hawtio-version}</version>
      </dependency>

     <!-- lets mark dependencies from the WAR as provided to avoid jetty:run adding duplicates -->
     <dependency>
       <groupId>io.hawt</groupId>
       <artifactId>hawtio-core</artifactId>
       <version>${hawtio-version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>io.hawt</groupId>
       <artifactId>hawtio-git</artifactId>
       <version>${hawtio-version}</version>
       <scope>provided</scope>
     </dependency>
    </dependencies>

    <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <configuration>
              <packagingExcludes>**/lib/slf4j*.jar,**/lib/**git**.jar</packagingExcludes>
              <failOnMissingWebXml>false</failOnMissingWebXml>
            </configuration>
          </plugin>
        </plugins>
    </build>
</project>
