blob: de666b2111d82c59527f88de18dd9ad062399f57 [file] [log] [blame]
Stuart McCullochf89870b2008-01-09 03:23:45 +00001<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 +00002
3 <parent>
4 <artifactId>felix</artifactId>
5 <groupId>org.apache.felix</groupId>
Stuart McCullochd00e6242008-01-03 09:01:10 +00006 <version>1.0.1</version>
Stefano Lenzi476013d2007-09-21 23:59:54 +00007 <relativePath>../pom/pom.xml</relativePath>
8 </parent>
9
10 <modelVersion>4.0.0</modelVersion>
11
12 <artifactId>maven-obr-plugin</artifactId>
Stuart McCullochf89870b2008-01-09 03:23:45 +000013 <version>1.0.0</version>
Stefano Lenzi476013d2007-09-21 23:59:54 +000014 <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 McCulloch285fcc22007-09-24 19:54:42 +000029 <groupId>org.apache.felix</groupId>
30 <artifactId>org.osgi.service.obr</artifactId>
Stuart McCulloch39e91002008-01-08 08:12:43 +000031 <version>1.0.0</version>
Stefano Lenzi476013d2007-09-21 23:59:54 +000032 </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 McCullochbfc05cf2007-09-26 15:34:00 +000041 <version>2.8.1</version>
Stefano Lenzi476013d2007-09-21 23:59:54 +000042 </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 Lenzi476013d2007-09-21 23:59:54 +000050
Stuart McCullochf89870b2008-01-09 03:23:45 +000051 <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>