blob: a88d62c3f8dbda92c620b8a3828add3024b39a52 [file] [log] [blame]
Karl Pauls4ebe5082006-10-30 15:00:08 +00001<!--
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-->
Carsten Ziegeler4fec0962008-01-11 16:13:31 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Richard S. Halla2dc4512006-04-04 13:17:11 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
Karl Pauls35d7e772009-09-06 21:53:35 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../pom/pom.xml</relativePath>
Richard S. Halla2dc4512006-04-04 13:17:11 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
Richard S. Hall1da4e542006-11-02 21:45:44 +000027 <packaging>bundle</packaging>
28 <name>Apache Felix Bundle Repository</name>
29 <description>Bundle repository service.</description>
Richard S. Halla2dc4512006-04-04 13:17:11 +000030 <artifactId>org.apache.felix.bundlerepository</artifactId>
Karl Pauls4ec78872009-10-11 21:18:18 +000031 <version>1.5.0-SNAPSHOT</version>
Richard S. Halla2dc4512006-04-04 13:17:11 +000032 <dependencies>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
Stuart McCulloch285fcc22007-09-24 19:54:42 +000035 <artifactId>org.osgi.service.obr</artifactId>
Karl Pauls549b8382008-08-31 22:15:28 +000036 <version>1.0.2</version>
Richard S. Halla2dc4512006-04-04 13:17:11 +000037 </dependency>
38 <dependency>
39 <groupId>${pom.groupId}</groupId>
40 <artifactId>org.apache.felix.shell</artifactId>
Karl Paulsad09c602009-10-11 21:20:04 +000041 <version>1.5.0-SNAPSHOT</version>
Richard S. Halla2dc4512006-04-04 13:17:11 +000042 </dependency>
43 <dependency>
Michael E. Rodriguez406386d2007-03-20 02:56:45 +000044 <groupId>net.sf.kxml</groupId>
Richard S. Halla2dc4512006-04-04 13:17:11 +000045 <artifactId>kxml2</artifactId>
46 <version>2.2.2</version>
47 </dependency>
Richard S. Hall552d60b2008-07-31 20:19:21 +000048 <dependency>
Karl Pauls1d7fb592009-09-30 21:05:27 +000049 <groupId>org.osgi</groupId>
Richard S. Hall552d60b2008-07-31 20:19:21 +000050 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls1d7fb592009-09-30 21:05:27 +000051 <version>4.0.0</version>
Richard S. Hall552d60b2008-07-31 20:19:21 +000052 <optional>true</optional>
53 </dependency>
Karl Pauls1d7fb592009-09-30 21:05:27 +000054 <dependency>
55 <groupId>org.osgi</groupId>
56 <artifactId>org.osgi.core</artifactId>
57 <version>4.1.0</version>
58 </dependency>
Richard S. Halla2dc4512006-04-04 13:17:11 +000059 </dependencies>
60 <build>
61 <plugins>
62 <plugin>
Richard S. Hall1da4e542006-11-02 21:45:44 +000063 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000064 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hall44cc39a2008-08-12 16:17:19 +000065 <version>1.4.3</version>
Richard S. Halla2dc4512006-04-04 13:17:11 +000066 <extensions>true</extensions>
67 <configuration>
Richard S. Hall1da4e542006-11-02 21:45:44 +000068 <instructions>
69 <Export-Package>org.osgi.service.obr</Export-Package>
Karl Pauls623165f2008-01-27 21:06:34 +000070 <Private-Package>org.kxml2.*,org.xmlpull.*;-split-package:=merge-first,org.apache.felix.bundlerepository.*</Private-Package>
Richard S. Hall552d60b2008-07-31 20:19:21 +000071 <Import-Package>!javax.xml.parsers,!org.xml.sax,org.osgi.service.log; version="1.3.0"; resolution:=optional,*</Import-Package>
Richard S. Halld178c1c2006-11-30 14:33:25 +000072 <DynamicImport-Package>org.apache.felix.shell</DynamicImport-Package>
Richard S. Hall1da4e542006-11-02 21:45:44 +000073 <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator>
Felix Meschberger0f37e7c2008-09-29 07:17:07 +000074 <Bundle-DocURL>http://felix.apache.org/site/apache-felix-osgi-bundle-repository.html</Bundle-DocURL>
Felix Meschberger7d3f0ed2008-08-28 15:55:16 +000075 <Bundle-Url>http://felix.apache.org/site/downloads.cgi</Bundle-Url>
76 <Bundle-Source>http://felix.apache.org/site/downloads.cgi</Bundle-Source>
Richard S. Hall1da4e542006-11-02 21:45:44 +000077 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000078 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Richard S. Hall1da4e542006-11-02 21:45:44 +000079 <Export-Service>org.osgi.service.obr.RepositoryAdmin</Export-Service>
80 </instructions>
Richard S. Halla2dc4512006-04-04 13:17:11 +000081 </configuration>
82 </plugin>
Karl Pauls7d134272009-03-31 21:04:00 +000083 <plugin>
84 <groupId>org.codehaus.mojo</groupId>
85 <artifactId>rat-maven-plugin</artifactId>
86 <configuration>
87 <excludeSubProjects>false</excludeSubProjects>
88 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
89 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
90 <excludes>
91 <param>doc/*</param>
92 <param>maven-eclipse.xml</param>
93 <param>.checkstyle</param>
94 <param>.externalToolBuilders/*</param>
95 </excludes>
96 </configuration>
97 </plugin>
Richard S. Halla2dc4512006-04-04 13:17:11 +000098 </plugins>
99 </build>
Richard S. Halla2dc4512006-04-04 13:17:11 +0000100</project>