<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</groupId>
    <artifactId>runner</artifactId>
    <version>1.7.6</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <groupId>org.ops4j.pax.runner</groupId>
  <artifactId>pax-runner-commons</artifactId>
  <packaging>jar</packaging>

  <name>OPS4J Pax Runner - Commons</name>
  <description>
    Pax Runner - Common utilities shared between modules. The jar is not required to be deployed alongside the artifacts
    that uses parts of it. The used parts are embeded into the artifact via maven depenency plugin + maven bundle
    plugin.
    See details at http://wiki.ops4j.org/confluence/x/A4A6.
  </description>

  <properties>
    <bundle.symbolicName>org.ops4j.pax.runner.commons</bundle.symbolicName>
    <bundle.namespace>org.ops4j.pax.runner.commons</bundle.namespace>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.ops4j.pax.swissbox</groupId>
      <artifactId>pax-swissbox-optional-jcl</artifactId>
    </dependency>
  </dependencies>

</project>