blob: 34cb8407cb0f5473c9f0ce60ecc4e963f8a7a7c0 [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 Pauls70a31152009-09-06 21:53:35 +000022 <artifactId>felix-parent</artifactId>
Guillaume Nodet094a9942010-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 Nodeteafeb7a2010-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 Nodetc2587032010-03-19 15:32:17 +000035 <artifactId>org.apache.felix.utils</artifactId>
Richard S. Hallc0f1c7b2010-09-21 18:42:49 +000036 <version>1.0.1-SNAPSHOT</version>
Guillaume Nodetc2587032010-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 Nodetfa028a82010-03-01 19:57:54 +000042 <version>1.0.2</version>
Guillaume Nodet986d4932010-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. Hallf4d1dab2009-12-09 21:41:29 +000048 <version>1.4.1</version>
Guillaume Nodet986d4932010-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 Nodetc2587032010-03-19 15:32:17 +000054 <version>2.3.0</version>
Guillaume Nodet986d4932010-02-22 20:07:08 +000055 <optional>true</optional>
Guillaume Nodet8764ef22010-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. Hallf1085c82008-07-31 20:19:21 +000063 <dependency>
Karl Pauls6eb92832009-09-30 21:05:27 +000064 <groupId>org.osgi</groupId>
Richard S. Hallf1085c82008-07-31 20:19:21 +000065 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls6eb92832009-09-30 21:05:27 +000066 <version>4.0.0</version>
Richard S. Hallf1085c82008-07-31 20:19:21 +000067 <optional>true</optional>
68 </dependency>
Karl Pauls6eb92832009-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 Nodet9ab12dc2010-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 Nodet986d4932010-02-22 20:07:08 +000078 <optional>true</optional>
Guillaume Nodet9ab12dc2010-02-19 14:22:52 +000079 </dependency>
Guillaume Nodet001f4ac2010-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 Nodetd8ab50f2010-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 Nodetd8ab50f2010-02-26 00:14:51 +000095 <Export-Package>org.apache.felix.bundlerepository;version="2.0"</Export-Package>
Guillaume Nodet8764ef22010-03-18 08:30:03 +000096 <Private-Package>
97 org.kxml2.io,
98 org.xmlpull.v1,
Guillaume Nodetc2587032010-03-19 15:32:17 +000099 org.apache.felix.bundlerepository.impl.*,
100 org.apache.felix.utils.*
Guillaume Nodet8764ef22010-03-18 08:30:03 +0000101 </Private-Package>
Guillaume Nodetd8ab50f2010-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 Nodetd8ab50f2010-02-26 00:14:51 +0000104 <Bundle-Activator>${pom.artifactId}.impl.Activator</Bundle-Activator>
Felix Meschbergerfcf64962008-09-29 07:17:07 +0000105 <Bundle-DocURL>http://felix.apache.org/site/apache-felix-osgi-bundle-repository.html</Bundle-DocURL>
Felix Meschberger410f5ab2008-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 Ziegeler90f0b9f2008-04-17 06:33:59 +0000109 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Guillaume Nodetd8ab50f2010-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>
Guillaume Nodet998ab6c2011-03-18 13:13:28 +0000112 <Include-Resource>META-INF/LICENSE=LICENSE,META-INF/LICENSE.kxml2=LICENSE.kxml2,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</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 Pauls84b482e2009-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>