Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Licensed to the Apache Software Foundation (ASF) under one |
| 4 | or more contributor license agreements. See the NOTICE file |
| 5 | distributed with this work for additional information |
| 6 | regarding copyright ownership. The ASF licenses this file |
| 7 | to you under the Apache License, Version 2.0 (the |
| 8 | "License"); you may not use this file except in compliance |
| 9 | with the License. You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, |
| 14 | software distributed under the License is distributed on an |
| 15 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | KIND, either express or implied. See the License for the |
| 17 | specific language governing permissions and limitations |
| 18 | under the License. |
| 19 | --> |
| 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 21 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 23 | |
| 24 | <parent> |
| 25 | <artifactId>felix</artifactId> |
| 26 | <groupId>org.apache.felix</groupId> |
| 27 | <version>1.1.0-SNAPSHOT</version> |
| 28 | <relativePath>../pom/pom.xml</relativePath> |
| 29 | </parent> |
| 30 | |
| 31 | <modelVersion>4.0.0</modelVersion> |
| 32 | |
| 33 | <artifactId>maven-obr-plugin</artifactId> |
| 34 | <version>0.1.0-SNAPSHOT</version> |
| 35 | <packaging>maven-plugin</packaging> |
| 36 | |
| 37 | <name>OBR Maven Plugin</name> |
| 38 | <description> |
| 39 | Provides a maven plugin which allows the automatic cration and update of an |
| 40 | OSGi Bundle Repository complaint to OSGi RFC 0112. |
| 41 | </description> |
| 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>net.sf.kxml</groupId> |
| 46 | <artifactId>kxml2</artifactId> |
| 47 | <version>2.2.2</version> |
| 48 | </dependency> |
| 49 | <dependency> |
Stuart McCulloch | 285fcc2 | 2007-09-24 19:54:42 +0000 | [diff] [blame] | 50 | <groupId>org.apache.felix</groupId> |
| 51 | <artifactId>org.osgi.service.obr</artifactId> |
| 52 | <version>1.1.0-SNAPSHOT</version> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.apache.maven</groupId> |
| 56 | <artifactId>maven-plugin-api</artifactId> |
| 57 | <version>2.0.7</version> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>xerces</groupId> |
| 61 | <artifactId>xercesImpl</artifactId> |
Stuart McCulloch | bfc05cf | 2007-09-26 15:34:00 +0000 | [diff] [blame] | 62 | <version>2.8.1</version> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.apache.maven</groupId> |
| 66 | <artifactId>maven-project</artifactId> |
| 67 | <version>2.0.7</version> |
| 68 | </dependency> |
| 69 | </dependencies> |
| 70 | |
| 71 | </project> |
| 72 | |