blob: b9b1244a15596235a1d46efbed412836297a742d [file] [log] [blame]
Karl Paulsd140dd92006-11-02 22:22:49 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Richard S. Hallf3120092006-10-31 17:32:16 +000019<project xmlns="http://maven.apache.org/POM/4.0.0"
20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
22
Richard S. Hallfcc28442006-10-31 17:37:13 +000023 <parent>
24 <artifactId>felix</artifactId>
25 <groupId>org.apache.felix</groupId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000026 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000027 <relativePath>../pom/pom.xml</relativePath>
Richard S. Hallfcc28442006-10-31 17:37:13 +000028 </parent>
29
Richard S. Hallf3120092006-10-31 17:32:16 +000030 <modelVersion>4.0.0</modelVersion>
Stefano Lenzi476013d2007-09-21 23:59:54 +000031
Richard S. Hall797bc982007-05-21 18:35:07 +000032 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000033 <version>1.1.0-SNAPSHOT</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000034 <packaging>maven-plugin</packaging>
Stefano Lenzi476013d2007-09-21 23:59:54 +000035
Richard S. Halld5325232006-11-02 20:57:17 +000036 <name>Maven Bundle Plugin</name>
Stefano Lenzi476013d2007-09-21 23:59:54 +000037 <description>
38 Provides a maven plugin which allows the creation of an OSGi bundle by
39 embedding used packages as class or jars by inspecting the classpath used to
40 compile the bundle. Plus a zillion other features.
41 The plugin relies on the bnd tools, so to gather more information you can look
42 at is documentation http://www.aqute.biz/php/tools/bnd.php
43 </description>
Richard S. Hallf3120092006-10-31 17:32:16 +000044
45 <dependencies>
46 <dependency>
Stefano Lenzi476013d2007-09-21 23:59:54 +000047 <groupId>org.apache.felix</groupId>
48 <artifactId>maven-obr-plugin</artifactId>
49 <version>0.1.0-SNAPSHOT</version>
50 </dependency>
51 <dependency>
Richard S. Hallf3120092006-10-31 17:32:16 +000052 <groupId>biz.aQute</groupId>
Richard S. Hall6cf6f0b2007-04-10 16:50:31 +000053 <artifactId>bndlib</artifactId>
Stuart McCullochae4ccc62007-11-19 11:01:14 +000054 <version>0.0.212</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000055 </dependency>
56 <dependency>
Stuart McCulloch55332cf2007-11-18 04:02:28 +000057 <groupId>org.apache.maven</groupId>
58 <artifactId>maven-project</artifactId>
59 <version>2.0.7</version>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.maven</groupId>
63 <artifactId>maven-model</artifactId>
64 <version>2.0.7</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000065 </dependency>
66 <dependency>
67 <groupId>org.apache.maven</groupId>
68 <artifactId>maven-plugin-api</artifactId>
Stuart McCulloch55332cf2007-11-18 04:02:28 +000069 <version>2.0.7</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000070 </dependency>
71 <dependency>
72 <groupId>org.apache.maven</groupId>
73 <artifactId>maven-artifact</artifactId>
Stuart McCulloch55332cf2007-11-18 04:02:28 +000074 <version>2.0.7</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000075 </dependency>
Stuart McCulloch55332cf2007-11-18 04:02:28 +000076 <dependency>
77 <groupId>org.apache.maven.shared</groupId>
78 <artifactId>maven-dependency-tree</artifactId>
79 <version>1.1-SNAPSHOT</version>
80 </dependency>
81 <dependency>
82 <groupId>org.apache.maven.shared</groupId>
83 <artifactId>maven-osgi</artifactId>
84 <version>0.2.0-SNAPSHOT</version>
85 </dependency>
86 <dependency>
87 <groupId>org.codehaus.plexus</groupId>
88 <artifactId>plexus-container-default</artifactId>
89 <version>1.0-alpha-9-stable-1</version>
90 </dependency>
91 <dependency>
92 <groupId>org.apache.maven.shared</groupId>
93 <artifactId>maven-plugin-testing-harness</artifactId>
94 <version>1.1</version>
95 <scope>test</scope>
96 </dependency>
Richard S. Hallf3120092006-10-31 17:32:16 +000097 </dependencies>
Stuart McCulloch55332cf2007-11-18 04:02:28 +000098
Richard S. Hallf3120092006-10-31 17:32:16 +000099</project>