Stuart McCulloch | f89870b | 2008-01-09 03:23:45 +0000 | [diff] [blame^] | 1 | <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] | 2 | |
| 3 | <parent> |
| 4 | <artifactId>felix</artifactId> |
| 5 | <groupId>org.apache.felix</groupId> |
Stuart McCulloch | d00e624 | 2008-01-03 09:01:10 +0000 | [diff] [blame] | 6 | <version>1.0.1</version> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 7 | <relativePath>../pom/pom.xml</relativePath> |
| 8 | </parent> |
| 9 | |
| 10 | <modelVersion>4.0.0</modelVersion> |
| 11 | |
| 12 | <artifactId>maven-obr-plugin</artifactId> |
Stuart McCulloch | f89870b | 2008-01-09 03:23:45 +0000 | [diff] [blame^] | 13 | <version>1.0.0</version> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 14 | <packaging>maven-plugin</packaging> |
| 15 | |
| 16 | <name>OBR Maven Plugin</name> |
| 17 | <description> |
| 18 | Provides a maven plugin which allows the automatic cration and update of an |
| 19 | OSGi Bundle Repository complaint to OSGi RFC 0112. |
| 20 | </description> |
| 21 | |
| 22 | <dependencies> |
| 23 | <dependency> |
| 24 | <groupId>net.sf.kxml</groupId> |
| 25 | <artifactId>kxml2</artifactId> |
| 26 | <version>2.2.2</version> |
| 27 | </dependency> |
| 28 | <dependency> |
Stuart McCulloch | 285fcc2 | 2007-09-24 19:54:42 +0000 | [diff] [blame] | 29 | <groupId>org.apache.felix</groupId> |
| 30 | <artifactId>org.osgi.service.obr</artifactId> |
Stuart McCulloch | 39e9100 | 2008-01-08 08:12:43 +0000 | [diff] [blame] | 31 | <version>1.0.0</version> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 32 | </dependency> |
| 33 | <dependency> |
| 34 | <groupId>org.apache.maven</groupId> |
| 35 | <artifactId>maven-plugin-api</artifactId> |
| 36 | <version>2.0.7</version> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>xerces</groupId> |
| 40 | <artifactId>xercesImpl</artifactId> |
Stuart McCulloch | bfc05cf | 2007-09-26 15:34:00 +0000 | [diff] [blame] | 41 | <version>2.8.1</version> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.apache.maven</groupId> |
| 45 | <artifactId>maven-project</artifactId> |
| 46 | <version>2.0.7</version> |
| 47 | </dependency> |
| 48 | </dependencies> |
| 49 | |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 50 | |
Stuart McCulloch | f89870b | 2008-01-09 03:23:45 +0000 | [diff] [blame^] | 51 | <scm> |
| 52 | <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/maven-obr-plugin-1.0.0</connection> |
| 53 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/maven-obr-plugin-1.0.0</developerConnection> |
| 54 | <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/maven-obr-plugin-1.0.0</url> |
| 55 | </scm> |
| 56 | </project> |