Karl Pauls | 4ebe508 | 2006-10-30 15:00:08 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
Richard S. Hall | a2dc451 | 2006-04-04 13:17:11 +0000 | [diff] [blame] | 19 | <project> |
| 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix</artifactId> |
Richard S. Hall | 8baa593 | 2006-12-06 15:53:52 +0000 | [diff] [blame] | 23 | <version>0.9.0-incubator-SNAPSHOT</version> |
Richard S. Hall | a2dc451 | 2006-04-04 13:17:11 +0000 | [diff] [blame] | 24 | </parent> |
| 25 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 26 | <packaging>bundle</packaging> |
| 27 | <name>Apache Felix Bundle Repository</name> |
| 28 | <description>Bundle repository service.</description> |
Richard S. Hall | a2dc451 | 2006-04-04 13:17:11 +0000 | [diff] [blame] | 29 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>${pom.groupId}</groupId> |
| 33 | <artifactId>org.osgi.core</artifactId> |
| 34 | <version>${pom.version}</version> |
Richard S. Hall | a2dc451 | 2006-04-04 13:17:11 +0000 | [diff] [blame] | 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>${pom.groupId}</groupId> |
| 38 | <artifactId>org.apache.felix.shell</artifactId> |
| 39 | <version>${pom.version}</version> |
Richard S. Hall | a2dc451 | 2006-04-04 13:17:11 +0000 | [diff] [blame] | 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>kxml2</groupId> |
| 43 | <artifactId>kxml2</artifactId> |
| 44 | <version>2.2.2</version> |
| 45 | </dependency> |
| 46 | </dependencies> |
| 47 | <build> |
| 48 | <plugins> |
| 49 | <plugin> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 50 | <groupId>org.apache.felix</groupId> |
| 51 | <artifactId>maven-bundle-plugin</artifactId> |
Richard S. Hall | a2dc451 | 2006-04-04 13:17:11 +0000 | [diff] [blame] | 52 | <extensions>true</extensions> |
| 53 | <configuration> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 54 | <instructions> |
| 55 | <Export-Package>org.osgi.service.obr</Export-Package> |
| 56 | <Private-Package>org.kxml2.*,org.xmlpull.*,org.apache.felix.bundlerepository.*</Private-Package> |
| 57 | <Import-Package>!javax.xml.parsers,!org.xml.sax,*</Import-Package> |
Richard S. Hall | d178c1c | 2006-11-30 14:33:25 +0000 | [diff] [blame] | 58 | <DynamicImport-Package>org.apache.felix.shell</DynamicImport-Package> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 59 | <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator> |
| 60 | <Bundle-DocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</Bundle-DocUrl> |
| 61 | <Bundle-Url>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</Bundle-Url> |
| 62 | <Bundle-Source>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</Bundle-Source> |
| 63 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 64 | <Export-Service>org.osgi.service.obr.RepositoryAdmin</Export-Service> |
| 65 | </instructions> |
Richard S. Hall | a2dc451 | 2006-04-04 13:17:11 +0000 | [diff] [blame] | 66 | </configuration> |
| 67 | </plugin> |
| 68 | </plugins> |
| 69 | </build> |
| 70 | </project> |