Richard S. Hall | a2dc451 | 2006-04-04 13:17:11 +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 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> |
Richard S. Hall | 6c79cbe | 2006-06-21 16:28:28 +0000 | [diff] [blame] | 38 | <ignorePackage>javax.xml.parsers,org.xml.sax</ignorePackage> |
Richard S. Hall | a2dc451 | 2006-04-04 13:17:11 +0000 | [diff] [blame] | 39 | <osgiManifest> |
| 40 | <bundleName>BundleRepository</bundleName> |
Richard S. Hall | 9beb33e | 2006-06-07 13:13:30 +0000 | [diff] [blame] | 41 | <bundleActivator>auto-detect</bundleActivator> |
Richard S. Hall | 3126799 | 2006-04-10 11:52:37 +0000 | [diff] [blame] | 42 | <bundleDescription>Bundle repository service.</bundleDescription> |
Richard S. Hall | 3126799 | 2006-04-10 11:52:37 +0000 | [diff] [blame] | 43 | <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl> |
| 44 | <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl> |
| 45 | <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource> |
| 46 | <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName> |
Richard S. Hall | a2dc451 | 2006-04-04 13:17:11 +0000 | [diff] [blame] | 47 | <dynamicImportPackage>org.apache.felix.shell</dynamicImportPackage> |
| 48 | <exportPackage>org.osgi.service.obr</exportPackage> |
| 49 | <exportService>org.osgi.service.obr.RepositoryAdmin</exportService> |
| 50 | </osgiManifest> |
| 51 | </configuration> |
| 52 | </plugin> |
| 53 | </plugins> |
| 54 | </build> |
| 55 | </project> |