blob: 951796fc16c598144f2c9eb239945dc3b9e48030 [file] [log] [blame]
<?xml version="1.0"?>
<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.apache.felix.atomos.tests</groupId>
<artifactId>org.apache.felix.atomos.tests.testbundles</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>org.apache.felix.atomos.tests.testbundles.dependent.x</artifactId>
<name>atomos.tests.testbundles.dependent.x</name>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.annotation</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.felix.atomos.tests</groupId>
<artifactId>org.apache.felix.atomos.tests.testbundles.dependency.a</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.felix.atomos.tests</groupId>
<artifactId>org.apache.felix.atomos.tests.testbundles.dependency.b</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>