Humberto Cervantes Maceda | a3664ba | 2006-04-21 16:34:36 +0000 | [diff] [blame] | 1 | <project>
|
| 2 | <parent>
|
| 3 | <groupId>org.apache.felix</groupId>
|
| 4 | <artifactId>felix</artifactId>
|
| 5 | <version>0.8.0-SNAPSHOT</version>
|
| 6 | </parent>
|
| 7 | <modelVersion>4.0.0</modelVersion>
|
| 8 | <packaging>osgi-bundle</packaging>
|
| 9 | <name>Apache Felix Declarative Services</name>
|
| 10 | <artifactId>org.apache.felix.scr</artifactId>
|
| 11 | <dependencies>
|
| 12 | <dependency>
|
| 13 | <groupId>${pom.groupId}</groupId>
|
| 14 | <artifactId>org.osgi.core</artifactId>
|
| 15 | <version>${pom.version}</version>
|
| 16 | <scope>provided</scope>
|
| 17 | </dependency>
|
| 18 | <dependency>
|
| 19 | <groupId>${pom.groupId}</groupId>
|
| 20 | <artifactId>org.osgi.compendium</artifactId>
|
| 21 | <version>${pom.version}</version>
|
| 22 | <scope>provided</scope>
|
| 23 | </dependency>
|
| 24 | <dependency>
|
| 25 | <groupId>kxml2</groupId>
|
| 26 | <artifactId>kxml2</artifactId>
|
| 27 | <version>2.2.2</version>
|
| 28 | </dependency> </dependencies>
|
| 29 | <build>
|
| 30 | <plugins>
|
| 31 | <plugin>
|
| 32 | <groupId>org.apache.felix.plugins</groupId>
|
| 33 | <artifactId>maven-osgi-plugin</artifactId>
|
| 34 | <version>${pom.version}</version>
|
| 35 | <extensions>true</extensions>
|
| 36 | <configuration>
|
| 37 | <osgiManifest>
|
| 38 | <bundleName>Service Component Runtime</bundleName>
|
| 39 | <bundleVendor>Apache Software Foundation</bundleVendor>
|
| 40 | <bundleDescription>
|
| 41 | Implementation of the Declarative Services specification.
|
| 42 | </bundleDescription>
|
| 43 | <bundleActivator>
|
| 44 | org.apache.felix.scr.Activator
|
| 45 | </bundleActivator>
|
| 46 | <bundleSymbolicName>org.apache.felix.scr</bundleSymbolicName>
|
| 47 | <exportPackage>
|
| 48 | org.apache.felix.scr
|
| 49 | </exportPackage>
|
| 50 | <importPackage>
|
| 51 | org.osgi.service.component, org.osgi.framework
|
| 52 | </importPackage>
|
| 53 | </osgiManifest>
|
| 54 | </configuration>
|
| 55 | </plugin>
|
| 56 | </plugins>
|
| 57 | </build>
|
| 58 | </project>
|