<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>org.clazzes.util</groupId>
    <artifactId>clazzes-parent</artifactId>
    <version>3.2.1</version>
  </parent>
  <groupId>org.clazzes.osgi</groupId>
  <artifactId>osgi-runner</artifactId>
  <version>2.3.0</version>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
      <comments>A business-friendly OSS license</comments>
    </license>
  </licenses>

  <organization>
    <name>Clazzes.org</name>
    <url>http://www.clazzes.org</url>
  </organization>

  <scm>
    <connection>scm:git:git@gitlab.intra.iteg.at:osgi/core/osgi-runner.git</connection>
    <developerConnection>scm:git:git@gitlab.intra.iteg.at:osgi/core/osgi-runner.git</developerConnection>
    <tag>osgi-runner-2.3.0</tag>
  </scm>
  
  <distributionManagement>
    <repository>
      <id>org.clazzes-osgi-dist</id>
      <url>scpexe://osgi@maven.clazzes.org/var/www/htdocs/maven.clazzes.org</url>
    </repository>
    <snapshotRepository>
      <id>clazzes.org-osgi-snapshot-dist</id>
      <url>scpexe://osgi@maven-snapshots.clazzes.org/var/www/htdocs/maven-snapshots.clazzes.org</url>
    </snapshotRepository>    
  </distributionManagement>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestEntries>
              <Automatic-Module-Name>org.clazzes.osgi.runner</Automatic-Module-Name>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>org.osgi</groupId>
      <artifactId>org.osgi.core</artifactId>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    
  </dependencies>

  <repositories>
    <repository>
      <id>clazzes.org</id>
      <url>https://maven.clazzes.org/</url>
    </repository>
  </repositories>

</project>
