<!--

    Copyright (C) 2010 FuseSource, Corp. All rights reserved.
    http://fusesource.com

    The software in this package is published under the terms of the AGPL license
    a copy of which has been included with this distribution in the license.txt file.

-->
<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>com.fusesource.fmc</groupId>
    <artifactId>fmc-project</artifactId>
    <version>0.9.8-beta</version>
  </parent>

  <artifactId>fmc-maven</artifactId>
  <name>${project.artifactId}</name>
  <packaging>bundle</packaging>

  <properties>
      <fon.osgi.export>
          com.fusesource.fmc.maven
      </fon.osgi.export>
      <fon.osgi.import>
          !org.cyberneko.html*,
          !junit*,
          !org.apache.xerces.xni*,
          !org.codehaus.classworlds*,
          !org.apache.xbean*,
          !org.apache.commons.logging,
          !org.slf4j,
          *
      </fon.osgi.import>
      <fon.osgi.private.pkg>
          com.google.common.collect,
          com.google.common.base,
          com.fusesource.fmc.maven.impl,
          org.apache.commons.codec*,
          org.apache.commons.httpclient*,
          org.apache.maven.*,
          org.sonatype.aether*,
          org.codehaus.plexus*,
      </fon.osgi.private.pkg>
  </properties>

  <dependencies>

      <dependency>
        <groupId>org.osgi</groupId>
        <artifactId>org.osgi.core</artifactId>
        <version>4.2.0</version>
        <scope>provided</scope>
      </dependency>
      <dependency>
        <groupId>org.osgi</groupId>
        <artifactId>org.osgi.compendium</artifactId>
        <version>4.2.0</version>
        <scope>provided</scope>
      </dependency>
      <dependency>
        <groupId>org.osgi</groupId>
        <artifactId>org.osgi.enterprise</artifactId>
        <version>4.2.0</version>
        <scope>provided</scope>
      </dependency>

      <dependency>
        <groupId>org.fusesource.hawtdispatch</groupId>
        <artifactId>hawtdispatch</artifactId>
        <version>${hawtdispatch-version}</version>
      </dependency>
      <dependency>
          <groupId>org.sonatype.aether</groupId>
          <artifactId>aether-impl</artifactId>
          <version>1.11</version>
      </dependency>
      <dependency>
          <groupId>org.sonatype.aether</groupId>
          <artifactId>aether-connector-wagon</artifactId>
          <version>1.11</version>
      </dependency>
      <dependency>
          <groupId>org.sonatype.aether</groupId>
          <artifactId>aether-spi</artifactId>
          <version>1.11</version>
      </dependency>
      <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-aether-provider</artifactId>
          <version>3.0.3</version>
      </dependency>
      <dependency>
          <groupId>org.apache.maven.wagon</groupId>
          <artifactId>wagon-file</artifactId>
          <version>1.0-beta-7</version>
      </dependency>
      <dependency>
          <groupId>org.apache.maven.wagon</groupId>
          <artifactId>wagon-http-lightweight</artifactId>
          <version>1.0-beta-7</version>
          <exclusions>
              <exclusion>
                  <groupId>nekohtml</groupId>
                  <artifactId>nekohtml</artifactId>
              </exclusion>
              <exclusion>
                  <groupId>nekohtml</groupId>
                  <artifactId>xercesMinimal</artifactId>
              </exclusion>
          </exclusions>
      </dependency>
      <dependency>
          <groupId>commons-httpclient</groupId>
          <artifactId>commons-httpclient</artifactId>
          <version>3.1</version>
          <scope>compile</scope>
      </dependency>

  </dependencies>

  <build>
    <plugins>

    </plugins>
  </build>

</project>
