| <project> |
| <parent> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>felix</artifactId> |
| <version>0.9.0-incubator-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.9.0-incubator-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", |
| org.osgi.service.log; specification-version="1.3" |
| </importPackage> |
| <exportPackage> |
| org.apache.felix.ipojo, |
| org.apache.felix.ipojo.metadata, |
| org.apache.felix.ipojo.architecture, |
| org.apache.felix.ipojo.parser, |
| org.apache.felix.ipojo.util, |
| org.osgi.service.cm; specification-version="1.2", |
| org.osgi.service.log; specification-version="1.3" |
| </exportPackage> |
| </osgiManifest> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |