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> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 5 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 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> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 15 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>${pom.groupId}</groupId> |
| 19 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 20 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 21 | </dependency> |
| 22 | <dependency> |
| 23 | <groupId>${pom.groupId}</groupId> |
| 24 | <artifactId>org.osgi.compendium</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 25 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 26 | </dependency> |
| 27 | <dependency> |
| 28 | <groupId>net.sf.kxml</groupId> |
| 29 | <artifactId>kxml2</artifactId> |
| 30 | <version>2.2.2</version> |
| 31 | </dependency> |
| 32 | </dependencies> |
| 33 | <build> |
| 34 | <plugins> |
| 35 | <plugin> |
| 36 | <groupId>org.apache.felix</groupId> |
| 37 | <artifactId>maven-bundle-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 38 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 39 | <extensions>true</extensions> |
| 40 | <configuration> |
| 41 | <instructions> |
| 42 | <Bundle-SymbolicName> |
| 43 | ${artifactId} |
| 44 | </Bundle-SymbolicName> |
| 45 | <Bundle-Vendor> |
| 46 | Apache Software Foundation |
| 47 | </Bundle-Vendor> |
| 48 | <Bundle-Activator> |
| 49 | org.apache.felix.scr.Activator |
| 50 | </Bundle-Activator> |
| 51 | <Export-Package> |
| 52 | org.osgi.service.cm, org.osgi.service.component |
| 53 | </Export-Package> |
| 54 | <Private-Package> |
| 55 | org.apache.felix.scr.*, org.kxml2.io, |
| 56 | org.osgi.util.tracker, |
| 57 | org.xmlpull.v1 |
| 58 | </Private-Package> |
| 59 | <DynamicImport-Package> |
| 60 | org.osgi.service.log |
| 61 | </DynamicImport-Package> |
| 62 | </instructions> |
| 63 | </configuration> |
| 64 | </plugin> |
| 65 | </plugins> |
| 66 | </build> |
| 67 | </project> |