blob: f29ab50e67f70f80aa689502e215073d4bca4553 [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>
Clement Escoffier4ae86972009-04-09 12:09:09 +000024 <version>1.0.4</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 McCulloch2e0245b2008-02-11 03:55:35 +000031 <version>1.2.1-SNAPSHOT</version>
Stefano Lenzi476013d2007-09-21 23:59:54 +000032 <packaging>maven-plugin</packaging>
33
34 <name>OBR Maven Plugin</name>
35 <description>
Stuart McCulloch0f151952008-02-10 18:41:42 +000036 Provides a maven plugin that supports the automatic creation and
37 update of an OSGi Bundle Repository compliant with OSGi RFC 0112.
Stefano Lenzi476013d2007-09-21 23:59:54 +000038 </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 McCulloche684cc82008-02-05 06:34:43 +000047 <groupId>xmlpull</groupId>
48 <artifactId>xmlpull</artifactId>
49 <version>1.1.3.1</version>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>org.osgi.core</artifactId>
54 <version>1.0.0</version>
55 </dependency>
56 <dependency>
Stuart McCulloch285fcc22007-09-24 19:54:42 +000057 <groupId>org.apache.felix</groupId>
58 <artifactId>org.osgi.service.obr</artifactId>
Stuart McCullochb9e39eb2008-02-05 00:36:23 +000059 <version>1.0.1</version>
Stefano Lenzi476013d2007-09-21 23:59:54 +000060 </dependency>
61 <dependency>
62 <groupId>org.apache.maven</groupId>
63 <artifactId>maven-plugin-api</artifactId>
64 <version>2.0.7</version>
65 </dependency>
66 <dependency>
Stefano Lenzi476013d2007-09-21 23:59:54 +000067 <groupId>org.apache.maven</groupId>
68 <artifactId>maven-project</artifactId>
69 <version>2.0.7</version>
70 </dependency>
Stuart McCulloche684cc82008-02-05 06:34:43 +000071 <dependency>
72 <groupId>org.apache.maven</groupId>
73 <artifactId>maven-model</artifactId>
74 <version>2.0.7</version>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.maven</groupId>
78 <artifactId>maven-artifact</artifactId>
79 <version>2.0.7</version>
80 </dependency>
81 <dependency>
82 <groupId>org.apache.maven</groupId>
83 <artifactId>maven-artifact-manager</artifactId>
84 <version>2.0.7</version>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.maven</groupId>
88 <artifactId>maven-settings</artifactId>
89 <version>2.0.7</version>
90 </dependency>
91 <dependency>
92 <groupId>org.apache.maven.wagon</groupId>
93 <artifactId>wagon-provider-api</artifactId>
94 <version>1.0-beta-2</version>
95 </dependency>
96 <dependency>
97 <groupId>org.codehaus.plexus</groupId>
98 <artifactId>plexus-utils</artifactId>
99 <version>1.4.7</version>
100 </dependency>
Stefano Lenzi476013d2007-09-21 23:59:54 +0000101 </dependencies>
Stuart McCulloch473e9942008-01-28 05:23:50 +0000102</project>