blob: 7b9dfd2e3c612df13c7491980b4b9fa141fbfb79 [file] [log] [blame]
Richard S. Hallf3120092006-10-31 17:32:16 +00001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
Richard S. Hall2e0f29a2006-10-31 20:04:10 +00005<!--
Richard S. Hallfcc28442006-10-31 17:37:13 +00006 <parent>
7 <artifactId>felix</artifactId>
8 <groupId>org.apache.felix</groupId>
9 <version>0.8.0-SNAPSHOT</version>
10 </parent>
Richard S. Hall2e0f29a2006-10-31 20:04:10 +000011-->
Richard S. Hallfcc28442006-10-31 17:37:13 +000012
Richard S. Hallf3120092006-10-31 17:32:16 +000013 <modelVersion>4.0.0</modelVersion>
14 <groupId>org.apache.felix</groupId>
15 <artifactId>maven-bundle-plugin</artifactId>
16
17 <repositories>
18 <repository>
19 <id>aQute</id>
20 <url>http://www.aQute.biz/repo</url>
21 </repository>
22 </repositories>
23
24 <packaging>maven-plugin</packaging>
25 <name>Maven Plugin OSGi Bundle</name>
26 <description> provides a maven plugin that allows that builds the jar by
27 embedding packages from the classpath (wildcarded). Plus a zillion
28 other features. See http://www.aqute.biz/php/tools/bnd.php
29 </description>
Richard S. Halldf60b512006-10-31 21:05:22 +000030 <version>0.8.0-SNAPSHOT</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000031
32 <dependencies>
33 <dependency>
34 <groupId>biz.aQute</groupId>
35 <artifactId>bnd</artifactId>
36 <version>0.0.95</version>
37 </dependency>
38 <dependency>
39 <groupId>junit</groupId>
40 <artifactId>junit</artifactId>
41 <version>3.8.1</version>
42 </dependency>
43 <dependency>
44 <groupId>org.apache.maven</groupId>
45 <artifactId>maven-plugin-api</artifactId>
46 <version>2.0</version>
47 </dependency>
48 <dependency>
49 <groupId>org.apache.maven</groupId>
50 <artifactId>maven-archiver</artifactId>
51 <version>2.0</version>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.maven</groupId>
55 <artifactId>maven-artifact</artifactId>
56 <version>2.0</version>
57 </dependency>
58 </dependencies>
59</project>