blob: b02d93a8f400d8a959ff7e829abdab4206ded84d [file] [log] [blame]
Carsten Ziegelerc56f79f2008-01-09 09:02:43 +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-->
Stuart McCullochf89870b2008-01-09 03:23:45 +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">
Stefano Lenzi476013d2007-09-21 23:59:54 +000020
21 <parent>
22 <artifactId>felix</artifactId>
23 <groupId>org.apache.felix</groupId>
Carsten Ziegeler646b9f12008-01-16 07:44:32 +000024 <version>1.0.2</version>
Stefano Lenzi476013d2007-09-21 23:59:54 +000025 <relativePath>../pom/pom.xml</relativePath>
26 </parent>
27
28 <modelVersion>4.0.0</modelVersion>
29
30 <artifactId>maven-obr-plugin</artifactId>
Stuart McCulloch473e9942008-01-28 05:23:50 +000031 <version>1.2.0-SNAPSHOT</version>
Stefano Lenzi476013d2007-09-21 23:59:54 +000032 <packaging>maven-plugin</packaging>
33
34 <name>OBR Maven Plugin</name>
35 <description>
36 Provides a maven plugin which allows the automatic cration and update of an
37 OSGi Bundle Repository complaint to OSGi RFC 0112.
38 </description>
39
40 <dependencies>
41 <dependency>
42 <groupId>net.sf.kxml</groupId>
43 <artifactId>kxml2</artifactId>
44 <version>2.2.2</version>
45 </dependency>
46 <dependency>
Stuart McCulloch285fcc22007-09-24 19:54:42 +000047 <groupId>org.apache.felix</groupId>
48 <artifactId>org.osgi.service.obr</artifactId>
Stuart McCullochb9e39eb2008-02-05 00:36:23 +000049 <version>1.0.1</version>
Stefano Lenzi476013d2007-09-21 23:59:54 +000050 </dependency>
51 <dependency>
52 <groupId>org.apache.maven</groupId>
53 <artifactId>maven-plugin-api</artifactId>
54 <version>2.0.7</version>
55 </dependency>
56 <dependency>
57 <groupId>xerces</groupId>
58 <artifactId>xercesImpl</artifactId>
Stuart McCullochbfc05cf2007-09-26 15:34:00 +000059 <version>2.8.1</version>
Stefano Lenzi476013d2007-09-21 23:59:54 +000060 </dependency>
61 <dependency>
62 <groupId>org.apache.maven</groupId>
63 <artifactId>maven-project</artifactId>
64 <version>2.0.7</version>
65 </dependency>
66 </dependencies>
Stuart McCulloch473e9942008-01-28 05:23:50 +000067</project>