blob: 0b47da4d963f504b4d2feb666feb17a74aee9fc9 [file] [log] [blame]
<project>
<parent>
<groupId>org.apache.felix</groupId>
<artifactId>felix</artifactId>
<version>0.8.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>osgi-bundle</packaging>
<name>Apache Felix iPOJO</name>
<artifactId>org.apache.felix.ipojo</artifactId>
<version>0.7.0-incubator-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.osgi.core</artifactId>
<version>0.8.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.apache.felix.ipojo.metadata</artifactId>
<version>0.7.0-incubator-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix.plugins</groupId>
<artifactId>maven-osgi-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<osgiManifest>
<bundleName>iPOJO</bundleName>
<bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
<bundleVendor>Clement ESCOFFIER</bundleVendor>
<bundleDescription> iPOJO </bundleDescription>
<importPackage>
org.osgi.framework; specification-version="1.3",
org.osgi.service.cm; specification-version="1.2"
</importPackage>
<exportPackage>
org.apache.felix.ipojo,
org.apache.felix.ipojo.metadata,
org.apache.felix.ipojo.architecture,
org.apache.felix.ipojo.parser,
org.osgi.service.cm; specification-version="1.2"
</exportPackage>
</osgiManifest>
</configuration>
</plugin>
</plugins>
</build>
</project>