blob: 2a626dbd0436825d5419ed3729c72942f4d123e4 [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-->
Carsten Ziegeler4fec0962008-01-11 16:13:31 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Richard S. Hallf3120092006-10-31 17:32:16 +000020
Richard S. Hallfcc28442006-10-31 17:37:13 +000021 <parent>
Stuart McCullocha58cb522009-07-13 11:07:51 +000022 <artifactId>felix-parent</artifactId>
Richard S. Hallfcc28442006-10-31 17:37:13 +000023 <groupId>org.apache.felix</groupId>
Guillaume Nodet5c0d6ce2010-04-29 18:26:02 +000024 <version>1.2.1</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000025 <relativePath>../pom/pom.xml</relativePath>
Richard S. Hallfcc28442006-10-31 17:37:13 +000026 </parent>
27
Richard S. Hallf3120092006-10-31 17:32:16 +000028 <modelVersion>4.0.0</modelVersion>
Stefano Lenzi476013d2007-09-21 23:59:54 +000029
Richard S. Hall797bc982007-05-21 18:35:07 +000030 <artifactId>maven-bundle-plugin</artifactId>
Guillaume Nodetdc8c9292010-04-29 18:27:53 +000031 <version>2.2.0-SNAPSHOT</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000032 <packaging>maven-plugin</packaging>
Stefano Lenzi476013d2007-09-21 23:59:54 +000033
Richard S. Halld5325232006-11-02 20:57:17 +000034 <name>Maven Bundle Plugin</name>
Stefano Lenzi476013d2007-09-21 23:59:54 +000035 <description>
Stuart McCulloch0f151952008-02-10 18:41:42 +000036 Provides a maven plugin that supports creating an OSGi bundle
37 from the contents of the compilation classpath along with its
38 resources and dependencies. Plus a zillion other features.
39 The plugin uses the Bnd tool (http://www.aqute.biz/Code/Bnd)
Stefano Lenzi476013d2007-09-21 23:59:54 +000040 </description>
Stuart McCullochf29ef3f2008-12-04 07:58:07 +000041
42 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-compiler-plugin</artifactId>
47 <configuration>
48 <source>1.5</source>
49 <target>1.5</target>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
Richard S. Hallf3120092006-10-31 17:32:16 +000054
55 <dependencies>
56 <dependency>
Stuart McCulloch276eec82009-09-02 14:33:37 +000057 <groupId>biz.aQute</groupId>
58 <artifactId>bndlib</artifactId>
Richard S. Hallea93d682010-11-04 13:54:27 +000059 <version>1.15.0</version>
Stuart McCulloch276eec82009-09-02 14:33:37 +000060 </dependency>
61 <dependency>
Stuart McCullochbb8b9fa2008-02-17 16:07:14 +000062 <groupId>net.sf.kxml</groupId>
63 <artifactId>kxml2</artifactId>
64 <version>2.2.2</version>
65 </dependency>
66 <dependency>
Guillaume Nodet8d5faf62010-03-19 15:32:17 +000067 <groupId>org.apache.felix</groupId>
68 <artifactId>org.apache.felix.bundlerepository</artifactId>
Guillaume Nodet5c0d6ce2010-04-29 18:26:02 +000069 <version>1.6.2</version>
Guillaume Nodet8d5faf62010-03-19 15:32:17 +000070 </dependency>
71 <dependency>
Stuart McCullochbb8b9fa2008-02-17 16:07:14 +000072 <groupId>org.apache.felix</groupId>
73 <artifactId>org.osgi.core</artifactId>
74 <version>1.0.0</version>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>org.osgi.service.obr</artifactId>
79 <version>1.0.1</version>
80 </dependency>
81 <dependency>
Stuart McCulloch55332cf2007-11-18 04:02:28 +000082 <groupId>org.apache.maven</groupId>
83 <artifactId>maven-project</artifactId>
84 <version>2.0.7</version>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.maven</groupId>
88 <artifactId>maven-model</artifactId>
89 <version>2.0.7</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000090 </dependency>
91 <dependency>
92 <groupId>org.apache.maven</groupId>
93 <artifactId>maven-plugin-api</artifactId>
Stuart McCulloch55332cf2007-11-18 04:02:28 +000094 <version>2.0.7</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000095 </dependency>
96 <dependency>
97 <groupId>org.apache.maven</groupId>
98 <artifactId>maven-artifact</artifactId>
Stuart McCulloch55332cf2007-11-18 04:02:28 +000099 <version>2.0.7</version>
Richard S. Hallf3120092006-10-31 17:32:16 +0000100 </dependency>
Stuart McCulloch55332cf2007-11-18 04:02:28 +0000101 <dependency>
Stuart McCullochf978c532007-12-27 09:16:34 +0000102 <groupId>org.apache.maven</groupId>
103 <artifactId>maven-archiver</artifactId>
104 <version>2.2</version>
105 </dependency>
106 <dependency>
Stuart McCullochbb8b9fa2008-02-17 16:07:14 +0000107 <groupId>org.apache.maven</groupId>
108 <artifactId>maven-artifact-manager</artifactId>
109 <version>2.0.7</version>
110 </dependency>
111 <dependency>
112 <groupId>org.apache.maven</groupId>
113 <artifactId>maven-settings</artifactId>
114 <version>2.0.7</version>
115 </dependency>
116 <dependency>
Stuart McCullochf3f38b22009-09-02 18:57:05 +0000117 <groupId>org.apache.maven.shared</groupId>
118 <artifactId>maven-dependency-tree</artifactId>
119 <version>1.2</version>
120 </dependency>
121 <dependency>
Stuart McCullochbb8b9fa2008-02-17 16:07:14 +0000122 <groupId>org.apache.maven.wagon</groupId>
123 <artifactId>wagon-provider-api</artifactId>
124 <version>1.0-beta-2</version>
125 </dependency>
126 <dependency>
Stuart McCulloch55332cf2007-11-18 04:02:28 +0000127 <groupId>org.codehaus.plexus</groupId>
128 <artifactId>plexus-container-default</artifactId>
129 <version>1.0-alpha-9-stable-1</version>
130 </dependency>
131 <dependency>
Stuart McCullochdd0d9ba2007-12-07 08:22:20 +0000132 <groupId>org.codehaus.plexus</groupId>
133 <artifactId>plexus-archiver</artifactId>
134 <version>1.0-alpha-7</version>
135 </dependency>
136 <dependency>
137 <groupId>org.codehaus.plexus</groupId>
138 <artifactId>plexus-utils</artifactId>
Stuart McCullochc1ab8422008-02-12 07:11:23 +0000139 <version>1.4.7</version>
Stuart McCullochdd0d9ba2007-12-07 08:22:20 +0000140 </dependency>
141 <dependency>
Stuart McCulloch55332cf2007-11-18 04:02:28 +0000142 <groupId>org.apache.maven.shared</groupId>
143 <artifactId>maven-plugin-testing-harness</artifactId>
144 <version>1.1</version>
145 <scope>test</scope>
146 </dependency>
Richard S. Hallf3120092006-10-31 17:32:16 +0000147 </dependencies>
Richard S. Hallf3120092006-10-31 17:32:16 +0000148</project>