blob: 4346850485e88161e0c53fce72fbe11971359cd6 [file] [log] [blame]
Richard S. Halla2dc4512006-04-04 13:17:11 +00001<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 Bundle Repository Service</name>
10 <artifactId>org.apache.felix.bundlerepository</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.apache.felix.shell</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>
29 </dependencies>
30 <build>
31 <plugins>
32 <plugin>
33 <groupId>org.apache.felix.plugins</groupId>
34 <artifactId>maven-osgi-plugin</artifactId>
35 <version>${pom.version}</version>
36 <extensions>true</extensions>
37 <configuration>
38 <osgiManifest>
39 <bundleName>BundleRepository</bundleName>
40 <bundleDescription>Bundle repository service for Felix (or any other OSGi framework).</bundleDescription>
41 <bundleActivator>org.apache.felix.bundlerepository.Activator</bundleActivator>
42 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/bundlerepository/</bundleDocUrl>
43 <bundleSource>http://oscar-osgi.sf.net/obr2/bundlerepository/org.apache.felix.bundlerepository-src.jar</bundleSource>
44 <bundleSymbolicName>org.apache.felix.bundlerepository</bundleSymbolicName>
45 <importPackage>org.osgi.framework</importPackage>
46 <dynamicImportPackage>org.apache.felix.shell</dynamicImportPackage>
47 <exportPackage>org.osgi.service.obr</exportPackage>
48 <exportService>org.osgi.service.obr.RepositoryAdmin</exportService>
49 </osgiManifest>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54</project>