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