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> |
Felix Meschberger | 644283d | 2007-08-22 15:28:05 +0000 | [diff] [blame] | 20 | <version>1.0.0</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> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 28 | <groupId>${pom.groupId}</groupId> |
| 29 | <artifactId>org.apache.felix.shell</artifactId> |
| 30 | <version>1.0.0</version> |
| 31 | </dependency> |
| 32 | <dependency> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 33 | <groupId>net.sf.kxml</groupId> |
| 34 | <artifactId>kxml2</artifactId> |
| 35 | <version>2.2.2</version> |
| 36 | </dependency> |
| 37 | </dependencies> |
| 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <groupId>org.apache.felix</groupId> |
| 42 | <artifactId>maven-bundle-plugin</artifactId> |
Stuart McCulloch | 871e7db | 2007-12-20 17:03:43 +0000 | [diff] [blame] | 43 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 44 | <extensions>true</extensions> |
| 45 | <configuration> |
| 46 | <instructions> |
| 47 | <Bundle-SymbolicName> |
| 48 | ${artifactId} |
| 49 | </Bundle-SymbolicName> |
| 50 | <Bundle-Vendor> |
| 51 | Apache Software Foundation |
| 52 | </Bundle-Vendor> |
| 53 | <Bundle-Activator> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 54 | org.apache.felix.scr.impl.Activator |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 55 | </Bundle-Activator> |
| 56 | <Export-Package> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 57 | org.apache.felix.scr;version=${pom.version}, |
Felix Meschberger | 644283d | 2007-08-22 15:28:05 +0000 | [diff] [blame] | 58 | org.osgi.service.cm, |
| 59 | org.osgi.service.component |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 60 | </Export-Package> |
| 61 | <Private-Package> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 62 | org.apache.felix.scr.impl.*, org.kxml2.io, |
Felix Meschberger | 644283d | 2007-08-22 15:28:05 +0000 | [diff] [blame] | 63 | org.osgi.util.tracker, org.xmlpull.v1 |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 64 | </Private-Package> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 65 | <Import-Package> |
| 66 | org.apache.felix.shell;resolution:=optional,* |
| 67 | </Import-Package> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 68 | <DynamicImport-Package> |
| 69 | org.osgi.service.log |
| 70 | </DynamicImport-Package> |
| 71 | </instructions> |
| 72 | </configuration> |
| 73 | </plugin> |
| 74 | </plugins> |
| 75 | </build> |
| 76 | </project> |