Carsten Ziegeler | c56f79f | 2008-01-09 09:02:43 +0000 | [diff] [blame] | 1 | <!-- |
| 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 McCulloch | f89870b | 2008-01-09 03:23:45 +0000 | [diff] [blame] | 19 | <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 Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 20 | |
| 21 | <parent> |
| 22 | <artifactId>felix</artifactId> |
| 23 | <groupId>org.apache.felix</groupId> |
Stuart McCulloch | d00e624 | 2008-01-03 09:01:10 +0000 | [diff] [blame] | 24 | <version>1.0.1</version> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 25 | <relativePath>../pom/pom.xml</relativePath> |
| 26 | </parent> |
| 27 | |
| 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | |
| 30 | <artifactId>maven-obr-plugin</artifactId> |
Stuart McCulloch | e405c39 | 2008-01-09 03:24:06 +0000 | [diff] [blame] | 31 | <version>1.1.0-SNAPSHOT</version> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 32 | <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 McCulloch | 285fcc2 | 2007-09-24 19:54:42 +0000 | [diff] [blame] | 47 | <groupId>org.apache.felix</groupId> |
| 48 | <artifactId>org.osgi.service.obr</artifactId> |
Stuart McCulloch | 39e9100 | 2008-01-08 08:12:43 +0000 | [diff] [blame] | 49 | <version>1.0.0</version> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 50 | </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 McCulloch | bfc05cf | 2007-09-26 15:34:00 +0000 | [diff] [blame] | 59 | <version>2.8.1</version> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 60 | </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 McCulloch | f89870b | 2008-01-09 03:23:45 +0000 | [diff] [blame] | 67 | </project> |