Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
| 5 | <version>0.9.0-incubator-SNAPSHOT</version> |
| 6 | <relativePath>../pom/pom.xml</relativePath> |
| 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
| 9 | <packaging>bundle</packaging> |
| 10 | <name>Apache Felix Declarative Services</name> |
| 11 | <description> |
| 12 | Implementation of the Declarative Services specification 1.0 |
| 13 | </description> |
| 14 | <artifactId>org.apache.felix.scr</artifactId> |
| 15 | <dependencies> |
| 16 | <dependency> |
| 17 | <groupId>${pom.groupId}</groupId> |
| 18 | <artifactId>org.osgi.core</artifactId> |
| 19 | <version>${pom.version}</version> |
| 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>${pom.groupId}</groupId> |
| 23 | <artifactId>org.osgi.compendium</artifactId> |
| 24 | <version>${pom.version}</version> |
| 25 | </dependency> |
| 26 | <dependency> |
| 27 | <groupId>net.sf.kxml</groupId> |
| 28 | <artifactId>kxml2</artifactId> |
| 29 | <version>2.2.2</version> |
| 30 | </dependency> |
| 31 | </dependencies> |
| 32 | <build> |
| 33 | <plugins> |
| 34 | <plugin> |
| 35 | <groupId>org.apache.felix</groupId> |
| 36 | <artifactId>maven-bundle-plugin</artifactId> |
| 37 | <version>0.9.0-incubator-SNAPSHOT</version> |
| 38 | <extensions>true</extensions> |
| 39 | <configuration> |
| 40 | <instructions> |
| 41 | <Bundle-SymbolicName> |
| 42 | ${artifactId} |
| 43 | </Bundle-SymbolicName> |
| 44 | <Bundle-Vendor> |
| 45 | Apache Software Foundation |
| 46 | </Bundle-Vendor> |
| 47 | <Bundle-Activator> |
| 48 | org.apache.felix.scr.Activator |
| 49 | </Bundle-Activator> |
| 50 | <Export-Package> |
| 51 | org.osgi.service.cm, org.osgi.service.component |
| 52 | </Export-Package> |
| 53 | <Private-Package> |
| 54 | org.apache.felix.scr.*, org.kxml2.io, |
| 55 | org.osgi.util.tracker, |
| 56 | org.xmlpull.v1 |
| 57 | </Private-Package> |
| 58 | <DynamicImport-Package> |
| 59 | org.osgi.service.log |
| 60 | </DynamicImport-Package> |
| 61 | </instructions> |
| 62 | </configuration> |
| 63 | </plugin> |
| 64 | </plugins> |
| 65 | </build> |
| 66 | </project> |