blob: c22aa0ea294ce3ab6e887d16bca16110a6f07bdd [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. Hallfcc28442006-10-31 17:37:13 +00005 <parent>
6 <artifactId>felix</artifactId>
7 <groupId>org.apache.felix</groupId>
8 <version>0.8.0-SNAPSHOT</version>
9 </parent>
10
Richard S. Hallf3120092006-10-31 17:32:16 +000011 <modelVersion>4.0.0</modelVersion>
12 <groupId>org.apache.felix</groupId>
13 <artifactId>maven-bundle-plugin</artifactId>
14
15 <repositories>
16 <repository>
17 <id>aQute</id>
18 <url>http://www.aQute.biz/repo</url>
19 </repository>
20 </repositories>
21
22 <packaging>maven-plugin</packaging>
23 <name>Maven Plugin OSGi Bundle</name>
24 <description> provides a maven plugin that allows that builds the jar by
25 embedding packages from the classpath (wildcarded). Plus a zillion
26 other features. See http://www.aqute.biz/php/tools/bnd.php
27 </description>
28 <version>0.9.0-SNAPSHOT</version>
29
30 <dependencies>
31 <dependency>
32 <groupId>biz.aQute</groupId>
33 <artifactId>bnd</artifactId>
34 <version>0.0.95</version>
35 </dependency>
36 <dependency>
37 <groupId>junit</groupId>
38 <artifactId>junit</artifactId>
39 <version>3.8.1</version>
40 </dependency>
41 <dependency>
42 <groupId>org.apache.maven</groupId>
43 <artifactId>maven-plugin-api</artifactId>
44 <version>2.0</version>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.maven</groupId>
48 <artifactId>maven-archiver</artifactId>
49 <version>2.0</version>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.maven</groupId>
53 <artifactId>maven-artifact</artifactId>
54 <version>2.0</version>
55 </dependency>
56 </dependencies>
57</project>