blob: 168849ba28b069527b9a1348530094cac8f5d975 [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">
Stuart McCulloch138a5a72011-06-28 01:12:48 +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>
Stuart McCulloch1714d162011-07-05 11:04:12 +000024 <version>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>
Carsten Ziegelere3275352014-08-28 06:00:14 +000031 <version>2.5.4-SNAPSHOT</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000032 <packaging>maven-plugin</packaging>
Stuart McCulloch138a5a72011-06-28 01:12:48 +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
Stuart McCulloch83e04542011-07-01 16:39:43 +000042 <scm>
Carsten Ziegelere3275352014-08-28 06:00:14 +000043 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/bundleplugin</connection>
44 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/bundleplugin</developerConnection>
45 <url>http://svn.apache.org/repos/asf/felix/trunk/bundleplugin</url>
Stuart McCulloch83e04542011-07-01 16:39:43 +000046 </scm>
47
Stuart McCullochf29ef3f2008-12-04 07:58:07 +000048 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-compiler-plugin</artifactId>
53 <configuration>
54 <source>1.5</source>
55 <target>1.5</target>
56 </configuration>
57 </plugin>
Guillaume Nodet1c9211a2014-05-20 08:56:13 +000058 <plugin>
59 <groupId>org.apache.rat</groupId>
60 <artifactId>apache-rat-plugin</artifactId>
61 <configuration>
62 <excludes>
63 <exclude>**/*.mf</exclude>
64 </excludes>
65 </configuration>
66 </plugin>
Stuart McCullochf29ef3f2008-12-04 07:58:07 +000067 </plugins>
68 </build>
Stuart McCulloch138a5a72011-06-28 01:12:48 +000069
Richard S. Hallf3120092006-10-31 17:32:16 +000070 <dependencies>
71 <dependency>
Stuart McCullochfe1c6482015-01-17 20:06:43 +000072 <groupId>org.osgi</groupId>
73 <artifactId>org.osgi.core</artifactId>
74 <version>4.3.1</version>
75 </dependency>
76 <dependency>
Stuart McCulloch656c0e82013-05-21 09:56:13 +000077 <groupId>biz.aQute.bnd</groupId>
Stuart McCullochfe1c6482015-01-17 20:06:43 +000078 <artifactId>biz.aQute.bndlib</artifactId>
79 <version>2.4.1</version>
Stuart McCulloch276eec82009-09-02 14:33:37 +000080 </dependency>
81 <dependency>
Stuart McCullochbb8b9fa2008-02-17 16:07:14 +000082 <groupId>org.apache.felix</groupId>
Stuart McCulloche3c8f1d2011-06-27 22:58:20 +000083 <artifactId>org.apache.felix.bundlerepository</artifactId>
Stuart McCulloch45e544e2011-11-28 16:20:05 +000084 <version>1.6.6</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000085 </dependency>
86 <dependency>
Guillaume Nodet7bf509f2014-05-19 07:12:48 +000087 <groupId>org.apache.felix</groupId>
88 <artifactId>org.apache.felix.utils</artifactId>
89 <version>1.6.0</version>
90 </dependency>
91 <dependency>
Richard S. Hallf3120092006-10-31 17:32:16 +000092 <groupId>org.apache.maven</groupId>
Stuart McCullochcdad75f2011-06-28 00:03:15 +000093 <artifactId>maven-core</artifactId>
Stuart McCulloch55332cf2007-11-18 04:02:28 +000094 <version>2.0.7</version>
Richard S. Hallf3120092006-10-31 17:32:16 +000095 </dependency>
Stuart McCulloch55332cf2007-11-18 04:02:28 +000096 <dependency>
Stuart McCullochf978c532007-12-27 09:16:34 +000097 <groupId>org.apache.maven</groupId>
98 <artifactId>maven-archiver</artifactId>
Stuart McCullochfee16052013-06-07 22:46:41 +000099 <version>2.5</version>
Stuart McCullochbb8b9fa2008-02-17 16:07:14 +0000100 </dependency>
101 <dependency>
Stuart McCullochf3f38b22009-09-02 18:57:05 +0000102 <groupId>org.apache.maven.shared</groupId>
103 <artifactId>maven-dependency-tree</artifactId>
Stuart McCullochfee16052013-06-07 22:46:41 +0000104 <version>2.1</version>
Stuart McCullochf3f38b22009-09-02 18:57:05 +0000105 </dependency>
106 <dependency>
Stuart McCullochdd0d9ba2007-12-07 08:22:20 +0000107 <groupId>org.codehaus.plexus</groupId>
Stuart McCullochdd0d9ba2007-12-07 08:22:20 +0000108 <artifactId>plexus-utils</artifactId>
Stuart McCullochfee16052013-06-07 22:46:41 +0000109 <version>3.0.10</version>
Stuart McCullochdd0d9ba2007-12-07 08:22:20 +0000110 </dependency>
111 <dependency>
Carsten Ziegeler70dbafd2014-05-14 09:16:49 +0000112 <groupId>org.apache.maven.doxia</groupId>
113 <artifactId>doxia-sink-api</artifactId>
114 <version>1.0</version>
115 </dependency>
116 <dependency>
117 <groupId>org.apache.maven.doxia</groupId>
118 <artifactId>doxia-site-renderer</artifactId>
119 <version>1.0</version>
120 </dependency>
121 <dependency>
Stuart McCulloch55332cf2007-11-18 04:02:28 +0000122 <groupId>org.apache.maven.shared</groupId>
123 <artifactId>maven-plugin-testing-harness</artifactId>
124 <version>1.1</version>
125 <scope>test</scope>
126 </dependency>
Richard S. Hallf3120092006-10-31 17:32:16 +0000127 </dependencies>
Stuart McCullochf6c6eb52011-06-24 15:06:18 +0000128
Stuart McCulloch138a5a72011-06-28 01:12:48 +0000129 <reporting>
130 <plugins>
131 <plugin>
132 <groupId>org.apache.maven.plugins</groupId>
133 <artifactId>maven-plugin-plugin</artifactId>
Stuart McCullochfee16052013-06-07 22:46:41 +0000134 <version>3.2</version>
Stuart McCulloch138a5a72011-06-28 01:12:48 +0000135 </plugin>
136 <plugin>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-changes-plugin</artifactId>
Stuart McCullochfee16052013-06-07 22:46:41 +0000139 <version>2.9</version>
Stuart McCulloch138a5a72011-06-28 01:12:48 +0000140 <configuration>
141 <component>12311143</component>
142 <versionPrefix>maven-bundle-plugin-</versionPrefix>
143 <statusIds>Resolved,Closed</statusIds>
144 <maxEntries>1000</maxEntries>
145 <issueManagementSystems>
146 <issueManagementSystem>JIRA</issueManagementSystem>
147 </issueManagementSystems>
Stuart McCullochc88a3a42013-06-07 23:09:05 +0000148 <useJql>true</useJql>
Stuart McCulloch138a5a72011-06-28 01:12:48 +0000149 </configuration>
150 </plugin>
151 </plugins>
Stuart McCullochf6c6eb52011-06-24 15:06:18 +0000152 </reporting>
153
Richard S. Hallf3120092006-10-31 17:32:16 +0000154</project>