blob: 854e7ac9370fc960d5a80319d2b85a5d1c91c191 [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>
Richard S. Halld5325232006-11-02 20:57:17 +000023 <name>Maven Bundle Plugin</name>
Richard S. Hallf3120092006-10-31 17:32:16 +000024 <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>
Richard S. Halldf60b512006-10-31 21:05:22 +000028 <version>0.8.0-SNAPSHOT</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000029
30 <dependencies>
31 <dependency>
32 <groupId>biz.aQute</groupId>
33 <artifactId>bnd</artifactId>
Richard S. Halld5325232006-11-02 20:57:17 +000034 <version>0.0.96</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000035 </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>