| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <project> |
| <parent> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>felix</artifactId> |
| <version>0.8.0-SNAPSHOT</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <packaging>osgi-bundle</packaging> |
| <name>Apache Felix Bundle Repository Service</name> |
| <artifactId>org.apache.felix.bundlerepository</artifactId> |
| <dependencies> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>org.osgi.core</artifactId> |
| <version>${pom.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>org.apache.felix.shell</artifactId> |
| <version>${pom.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>kxml2</groupId> |
| <artifactId>kxml2</artifactId> |
| <version>2.2.2</version> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix.plugins</groupId> |
| <artifactId>maven-osgi-plugin</artifactId> |
| <version>${pom.version}</version> |
| <extensions>true</extensions> |
| <configuration> |
| <ignorePackage>javax.xml.parsers,org.xml.sax</ignorePackage> |
| <osgiManifest> |
| <bundleName>BundleRepository</bundleName> |
| <bundleActivator>auto-detect</bundleActivator> |
| <bundleDescription>Bundle repository service.</bundleDescription> |
| <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl> |
| <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl> |
| <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource> |
| <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName> |
| <dynamicImportPackage>org.apache.felix.shell</dynamicImportPackage> |
| <exportPackage>org.osgi.service.obr</exportPackage> |
| <exportService>org.osgi.service.obr.RepositoryAdmin</exportService> |
| </osgiManifest> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |