blob: ed7ad04897cb11bd768c4b82f5e882b08a6e8fcb [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>
Guillaume Nodet9c777e92010-04-29 18:22:01 +000023 <version>1.2.1</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>
Guillaume Nodet7808a152010-06-15 11:06:35 +000031 <version>1.6.5-SNAPSHOT</version>
Richard S. Halla2dc4512006-04-04 13:17:11 +000032 <dependencies>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
Guillaume Nodet8d5faf62010-03-19 15:32:17 +000035 <artifactId>org.apache.felix.utils</artifactId>
Felix Meschberger21d70d72010-04-02 15:18:32 +000036 <version>1.0.0</version>
Guillaume Nodet8d5faf62010-03-19 15:32:17 +000037 <optional>true</optional>
38 </dependency>
39 <dependency>
40 <groupId>${pom.groupId}</groupId>
Stuart McCulloch285fcc22007-09-24 19:54:42 +000041 <artifactId>org.osgi.service.obr</artifactId>
Guillaume Nodetc63f7ff2010-03-01 19:57:54 +000042 <version>1.0.2</version>
Guillaume Nodet686cb9b2010-02-22 20:07:08 +000043 <optional>true</optional>
Richard S. Halla2dc4512006-04-04 13:17:11 +000044 </dependency>
45 <dependency>
46 <groupId>${pom.groupId}</groupId>
47 <artifactId>org.apache.felix.shell</artifactId>
Richard S. Hall25ea8bf2009-12-09 21:41:29 +000048 <version>1.4.1</version>
Guillaume Nodet686cb9b2010-02-22 20:07:08 +000049 <optional>true</optional>
Richard S. Halla2dc4512006-04-04 13:17:11 +000050 </dependency>
51 <dependency>
Michael E. Rodriguez406386d2007-03-20 02:56:45 +000052 <groupId>net.sf.kxml</groupId>
Richard S. Halla2dc4512006-04-04 13:17:11 +000053 <artifactId>kxml2</artifactId>
Guillaume Nodet8d5faf62010-03-19 15:32:17 +000054 <version>2.3.0</version>
Guillaume Nodet686cb9b2010-02-22 20:07:08 +000055 <optional>true</optional>
Guillaume Nodet5e1b3a62010-03-18 08:30:03 +000056 <exclusions>
57 <exclusion>
58 <groupId>xmlpull</groupId>
59 <artifactId>xmlpull</artifactId>
60 </exclusion>
61 </exclusions>
Richard S. Halla2dc4512006-04-04 13:17:11 +000062 </dependency>
Richard S. Hall552d60b2008-07-31 20:19:21 +000063 <dependency>
Karl Pauls1d7fb592009-09-30 21:05:27 +000064 <groupId>org.osgi</groupId>
Richard S. Hall552d60b2008-07-31 20:19:21 +000065 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls1d7fb592009-09-30 21:05:27 +000066 <version>4.0.0</version>
Richard S. Hall552d60b2008-07-31 20:19:21 +000067 <optional>true</optional>
68 </dependency>
Karl Pauls1d7fb592009-09-30 21:05:27 +000069 <dependency>
70 <groupId>org.osgi</groupId>
71 <artifactId>org.osgi.core</artifactId>
72 <version>4.1.0</version>
73 </dependency>
Guillaume Nodet389b81a2010-02-19 14:22:52 +000074 <dependency>
75 <groupId>org.codehaus.woodstox</groupId>
76 <artifactId>woodstox-core-asl</artifactId>
77 <version>4.0.7</version>
Guillaume Nodet686cb9b2010-02-22 20:07:08 +000078 <optional>true</optional>
Guillaume Nodet389b81a2010-02-19 14:22:52 +000079 </dependency>
Guillaume Nodet66b87bd2010-02-23 11:34:29 +000080 <dependency>
81 <groupId>org.easymock</groupId>
82 <artifactId>easymock</artifactId>
83 <version>2.4</version>
84 </dependency>
Richard S. Halla2dc4512006-04-04 13:17:11 +000085 </dependencies>
86 <build>
87 <plugins>
88 <plugin>
Richard S. Hall1da4e542006-11-02 21:45:44 +000089 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000090 <artifactId>maven-bundle-plugin</artifactId>
Guillaume Nodet6aa72242010-02-26 00:14:51 +000091 <version>2.0.1</version>
Richard S. Halla2dc4512006-04-04 13:17:11 +000092 <extensions>true</extensions>
93 <configuration>
Richard S. Hall1da4e542006-11-02 21:45:44 +000094 <instructions>
Guillaume Nodet6aa72242010-02-26 00:14:51 +000095 <Export-Package>org.apache.felix.bundlerepository;version="2.0"</Export-Package>
Guillaume Nodet5e1b3a62010-03-18 08:30:03 +000096 <Private-Package>
97 org.kxml2.io,
98 org.xmlpull.v1,
Guillaume Nodet8d5faf62010-03-19 15:32:17 +000099 org.apache.felix.bundlerepository.impl.*,
100 org.apache.felix.utils.*
Guillaume Nodet5e1b3a62010-03-18 08:30:03 +0000101 </Private-Package>
Guillaume Nodet6aa72242010-02-26 00:14:51 +0000102 <Import-Package>!javax.xml.parsers,!org.xml.sax,org.osgi.service.log;resolution:=optional,org.osgi.service.obr;resolution:=optional,javax.xml.stream;resolution:=optional,*</Import-Package>
Richard S. Halld178c1c2006-11-30 14:33:25 +0000103 <DynamicImport-Package>org.apache.felix.shell</DynamicImport-Package>
Guillaume Nodet6aa72242010-02-26 00:14:51 +0000104 <Bundle-Activator>${pom.artifactId}.impl.Activator</Bundle-Activator>
Felix Meschberger0f37e7c2008-09-29 07:17:07 +0000105 <Bundle-DocURL>http://felix.apache.org/site/apache-felix-osgi-bundle-repository.html</Bundle-DocURL>
Felix Meschberger7d3f0ed2008-08-28 15:55:16 +0000106 <Bundle-Url>http://felix.apache.org/site/downloads.cgi</Bundle-Url>
107 <Bundle-Source>http://felix.apache.org/site/downloads.cgi</Bundle-Source>
Richard S. Hall1da4e542006-11-02 21:45:44 +0000108 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +0000109 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Guillaume Nodet6aa72242010-02-26 00:14:51 +0000110 <Export-Service>org.apache.felix.bundlerepository.RepositoryAdmin,org.osgi.service.obr.RepositoryAdmin</Export-Service>
111 <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
Richard S. Hallbb2d43e2010-06-09 17:42:23 +0000112 <Include-Resource>META-INF/LICENSE=LICENSE,META-INF/LICENSE.kxml2=LICENSE.kxml2,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES,{src/main/resources/}</Include-Resource>
Richard S. Hall1da4e542006-11-02 21:45:44 +0000113 </instructions>
Richard S. Halla2dc4512006-04-04 13:17:11 +0000114 </configuration>
115 </plugin>
Karl Pauls7d134272009-03-31 21:04:00 +0000116 <plugin>
117 <groupId>org.codehaus.mojo</groupId>
118 <artifactId>rat-maven-plugin</artifactId>
119 <configuration>
120 <excludeSubProjects>false</excludeSubProjects>
121 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
122 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
123 <excludes>
124 <param>doc/*</param>
125 <param>maven-eclipse.xml</param>
126 <param>.checkstyle</param>
127 <param>.externalToolBuilders/*</param>
128 </excludes>
129 </configuration>
130 </plugin>
Richard S. Halla2dc4512006-04-04 13:17:11 +0000131 </plugins>
132 </build>
Richard S. Halla2dc4512006-04-04 13:17:11 +0000133</project>