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