Karl Pauls | d140dd9 | 2006-11-02 22:22:49 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Ziegeler | 4fec096 | 2008-01-11 16:13:31 +0000 | [diff] [blame] | 19 | <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 McCulloch | 138a5a7 | 2011-06-28 01:12:48 +0000 | [diff] [blame] | 20 | |
Richard S. Hall | fcc2844 | 2006-10-31 17:37:13 +0000 | [diff] [blame] | 21 | <parent> |
Stuart McCulloch | a58cb52 | 2009-07-13 11:07:51 +0000 | [diff] [blame] | 22 | <artifactId>felix-parent</artifactId> |
Richard S. Hall | fcc2844 | 2006-10-31 17:37:13 +0000 | [diff] [blame] | 23 | <groupId>org.apache.felix</groupId> |
Stuart McCulloch | 1714d16 | 2011-07-05 11:04:12 +0000 | [diff] [blame] | 24 | <version>2.1</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 25 | <relativePath>../pom/pom.xml</relativePath> |
Richard S. Hall | fcc2844 | 2006-10-31 17:37:13 +0000 | [diff] [blame] | 26 | </parent> |
| 27 | |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 28 | <modelVersion>4.0.0</modelVersion> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 29 | |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 30 | <artifactId>maven-bundle-plugin</artifactId> |
Guillaume Nodet | 60c3140 | 2015-04-17 12:08:30 +0000 | [diff] [blame] | 31 | <version>2.5.5-SNAPSHOT</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 32 | <packaging>maven-plugin</packaging> |
Stuart McCulloch | 138a5a7 | 2011-06-28 01:12:48 +0000 | [diff] [blame] | 33 | |
Richard S. Hall | d532523 | 2006-11-02 20:57:17 +0000 | [diff] [blame] | 34 | <name>Maven Bundle Plugin</name> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 35 | <description> |
Stuart McCulloch | 0f15195 | 2008-02-10 18:41:42 +0000 | [diff] [blame] | 36 | 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 Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 40 | </description> |
Stuart McCulloch | f29ef3f | 2008-12-04 07:58:07 +0000 | [diff] [blame] | 41 | |
Stuart McCulloch | 83e0454 | 2011-07-01 16:39:43 +0000 | [diff] [blame] | 42 | <scm> |
Guillaume Nodet | 60c3140 | 2015-04-17 12:08:30 +0000 | [diff] [blame] | 43 | <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 McCulloch | 83e0454 | 2011-07-01 16:39:43 +0000 | [diff] [blame] | 46 | </scm> |
| 47 | |
Stuart McCulloch | f29ef3f | 2008-12-04 07:58:07 +0000 | [diff] [blame] | 48 | <build> |
Carsten Ziegeler | 318c2cb | 2015-03-09 13:57:23 +0000 | [diff] [blame] | 49 | <pluginManagement> |
| 50 | <plugins> |
| 51 | <plugin> |
| 52 | <groupId>org.apache.maven.plugins</groupId> |
| 53 | <artifactId>maven-plugin-plugin</artifactId> |
| 54 | <version>3.4</version> |
| 55 | <executions> |
| 56 | <execution> |
| 57 | <id>default-descriptor</id> |
| 58 | <phase>process-classes</phase> |
| 59 | </execution> |
| 60 | </executions> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </pluginManagement> |
Stuart McCulloch | f29ef3f | 2008-12-04 07:58:07 +0000 | [diff] [blame] | 64 | <plugins> |
| 65 | <plugin> |
| 66 | <groupId>org.apache.maven.plugins</groupId> |
| 67 | <artifactId>maven-compiler-plugin</artifactId> |
| 68 | <configuration> |
| 69 | <source>1.5</source> |
| 70 | <target>1.5</target> |
| 71 | </configuration> |
| 72 | </plugin> |
Guillaume Nodet | 1c9211a | 2014-05-20 08:56:13 +0000 | [diff] [blame] | 73 | <plugin> |
Carsten Ziegeler | 318c2cb | 2015-03-09 13:57:23 +0000 | [diff] [blame] | 74 | <groupId>org.apache.maven.plugins</groupId> |
| 75 | <artifactId>maven-plugin-plugin</artifactId> |
| 76 | </plugin> |
| 77 | <plugin> |
Guillaume Nodet | 1c9211a | 2014-05-20 08:56:13 +0000 | [diff] [blame] | 78 | <groupId>org.apache.rat</groupId> |
| 79 | <artifactId>apache-rat-plugin</artifactId> |
| 80 | <configuration> |
| 81 | <excludes> |
| 82 | <exclude>**/*.mf</exclude> |
| 83 | </excludes> |
| 84 | </configuration> |
| 85 | </plugin> |
Stuart McCulloch | f29ef3f | 2008-12-04 07:58:07 +0000 | [diff] [blame] | 86 | </plugins> |
| 87 | </build> |
Stuart McCulloch | 138a5a7 | 2011-06-28 01:12:48 +0000 | [diff] [blame] | 88 | |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 89 | <dependencies> |
| 90 | <dependency> |
Stuart McCulloch | fe1c648 | 2015-01-17 20:06:43 +0000 | [diff] [blame] | 91 | <groupId>org.osgi</groupId> |
| 92 | <artifactId>org.osgi.core</artifactId> |
| 93 | <version>4.3.1</version> |
| 94 | </dependency> |
| 95 | <dependency> |
Stuart McCulloch | 656c0e8 | 2013-05-21 09:56:13 +0000 | [diff] [blame] | 96 | <groupId>biz.aQute.bnd</groupId> |
Stuart McCulloch | fe1c648 | 2015-01-17 20:06:43 +0000 | [diff] [blame] | 97 | <artifactId>biz.aQute.bndlib</artifactId> |
| 98 | <version>2.4.1</version> |
Stuart McCulloch | 276eec8 | 2009-09-02 14:33:37 +0000 | [diff] [blame] | 99 | </dependency> |
| 100 | <dependency> |
Stuart McCulloch | bb8b9fa | 2008-02-17 16:07:14 +0000 | [diff] [blame] | 101 | <groupId>org.apache.felix</groupId> |
Stuart McCulloch | e3c8f1d | 2011-06-27 22:58:20 +0000 | [diff] [blame] | 102 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
Stuart McCulloch | 45e544e | 2011-11-28 16:20:05 +0000 | [diff] [blame] | 103 | <version>1.6.6</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 104 | </dependency> |
| 105 | <dependency> |
Guillaume Nodet | 7bf509f | 2014-05-19 07:12:48 +0000 | [diff] [blame] | 106 | <groupId>org.apache.felix</groupId> |
| 107 | <artifactId>org.apache.felix.utils</artifactId> |
| 108 | <version>1.6.0</version> |
| 109 | </dependency> |
| 110 | <dependency> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 111 | <groupId>org.apache.maven</groupId> |
Stuart McCulloch | cdad75f | 2011-06-28 00:03:15 +0000 | [diff] [blame] | 112 | <artifactId>maven-core</artifactId> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 113 | <version>2.0.7</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 114 | </dependency> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 115 | <dependency> |
Stuart McCulloch | f978c53 | 2007-12-27 09:16:34 +0000 | [diff] [blame] | 116 | <groupId>org.apache.maven</groupId> |
| 117 | <artifactId>maven-archiver</artifactId> |
Stuart McCulloch | fee1605 | 2013-06-07 22:46:41 +0000 | [diff] [blame] | 118 | <version>2.5</version> |
Stuart McCulloch | bb8b9fa | 2008-02-17 16:07:14 +0000 | [diff] [blame] | 119 | </dependency> |
| 120 | <dependency> |
Stuart McCulloch | f3f38b2 | 2009-09-02 18:57:05 +0000 | [diff] [blame] | 121 | <groupId>org.apache.maven.shared</groupId> |
| 122 | <artifactId>maven-dependency-tree</artifactId> |
Stuart McCulloch | fee1605 | 2013-06-07 22:46:41 +0000 | [diff] [blame] | 123 | <version>2.1</version> |
Stuart McCulloch | f3f38b2 | 2009-09-02 18:57:05 +0000 | [diff] [blame] | 124 | </dependency> |
| 125 | <dependency> |
Stuart McCulloch | dd0d9ba | 2007-12-07 08:22:20 +0000 | [diff] [blame] | 126 | <groupId>org.codehaus.plexus</groupId> |
Stuart McCulloch | dd0d9ba | 2007-12-07 08:22:20 +0000 | [diff] [blame] | 127 | <artifactId>plexus-utils</artifactId> |
Stuart McCulloch | fee1605 | 2013-06-07 22:46:41 +0000 | [diff] [blame] | 128 | <version>3.0.10</version> |
Stuart McCulloch | dd0d9ba | 2007-12-07 08:22:20 +0000 | [diff] [blame] | 129 | </dependency> |
| 130 | <dependency> |
Carsten Ziegeler | 3fa064f | 2015-03-02 10:40:51 +0000 | [diff] [blame] | 131 | <groupId>org.sonatype.plexus</groupId> |
| 132 | <artifactId>plexus-build-api</artifactId> |
| 133 | <version>0.0.7</version> |
| 134 | </dependency> |
| 135 | <dependency> |
Carsten Ziegeler | 70dbafd | 2014-05-14 09:16:49 +0000 | [diff] [blame] | 136 | <groupId>org.apache.maven.doxia</groupId> |
| 137 | <artifactId>doxia-sink-api</artifactId> |
| 138 | <version>1.0</version> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>org.apache.maven.doxia</groupId> |
| 142 | <artifactId>doxia-site-renderer</artifactId> |
| 143 | <version>1.0</version> |
| 144 | </dependency> |
| 145 | <dependency> |
Carsten Ziegeler | 318c2cb | 2015-03-09 13:57:23 +0000 | [diff] [blame] | 146 | <groupId>org.apache.maven.plugin-tools</groupId> |
| 147 | <artifactId>maven-plugin-annotations</artifactId> |
| 148 | <version>3.4</version> |
| 149 | <scope>provided</scope> |
| 150 | </dependency> |
| 151 | <dependency> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 152 | <groupId>org.apache.maven.shared</groupId> |
| 153 | <artifactId>maven-plugin-testing-harness</artifactId> |
| 154 | <version>1.1</version> |
| 155 | <scope>test</scope> |
| 156 | </dependency> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 157 | </dependencies> |
Stuart McCulloch | f6c6eb5 | 2011-06-24 15:06:18 +0000 | [diff] [blame] | 158 | |
Stuart McCulloch | 138a5a7 | 2011-06-28 01:12:48 +0000 | [diff] [blame] | 159 | <reporting> |
| 160 | <plugins> |
| 161 | <plugin> |
| 162 | <groupId>org.apache.maven.plugins</groupId> |
| 163 | <artifactId>maven-plugin-plugin</artifactId> |
Carsten Ziegeler | 318c2cb | 2015-03-09 13:57:23 +0000 | [diff] [blame] | 164 | <version>3.4</version> |
Stuart McCulloch | 138a5a7 | 2011-06-28 01:12:48 +0000 | [diff] [blame] | 165 | </plugin> |
| 166 | <plugin> |
| 167 | <groupId>org.apache.maven.plugins</groupId> |
| 168 | <artifactId>maven-changes-plugin</artifactId> |
Stuart McCulloch | fee1605 | 2013-06-07 22:46:41 +0000 | [diff] [blame] | 169 | <version>2.9</version> |
Stuart McCulloch | 138a5a7 | 2011-06-28 01:12:48 +0000 | [diff] [blame] | 170 | <configuration> |
| 171 | <component>12311143</component> |
| 172 | <versionPrefix>maven-bundle-plugin-</versionPrefix> |
| 173 | <statusIds>Resolved,Closed</statusIds> |
| 174 | <maxEntries>1000</maxEntries> |
| 175 | <issueManagementSystems> |
| 176 | <issueManagementSystem>JIRA</issueManagementSystem> |
| 177 | </issueManagementSystems> |
Stuart McCulloch | c88a3a4 | 2013-06-07 23:09:05 +0000 | [diff] [blame] | 178 | <useJql>true</useJql> |
Stuart McCulloch | 138a5a7 | 2011-06-28 01:12:48 +0000 | [diff] [blame] | 179 | </configuration> |
| 180 | </plugin> |
| 181 | </plugins> |
Stuart McCulloch | f6c6eb5 | 2011-06-24 15:06:18 +0000 | [diff] [blame] | 182 | </reporting> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 183 | </project> |