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"> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 20 | |
Richard S. Hall | fcc2844 | 2006-10-31 17:37:13 +0000 | [diff] [blame] | 21 | <parent> |
| 22 | <artifactId>felix</artifactId> |
| 23 | <groupId>org.apache.felix</groupId> |
Carsten Ziegeler | b7251fa | 2008-01-16 07:37:24 +0000 | [diff] [blame] | 24 | <version>1.0.2</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> |
Stuart McCulloch | ebef69e | 2008-01-17 18:23:33 +0000 | [diff] [blame] | 31 | <version>1.2.1-SNAPSHOT</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 32 | <packaging>maven-plugin</packaging> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +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> |
| 36 | Provides a maven plugin which allows the creation of an OSGi bundle by |
| 37 | embedding used packages as class or jars by inspecting the classpath used to |
| 38 | compile the bundle. Plus a zillion other features. |
| 39 | The plugin relies on the bnd tools, so to gather more information you can look |
| 40 | at is documentation http://www.aqute.biz/php/tools/bnd.php |
| 41 | </description> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 45 | <groupId>org.apache.felix</groupId> |
| 46 | <artifactId>maven-obr-plugin</artifactId> |
Stuart McCulloch | 473e994 | 2008-01-28 05:23:50 +0000 | [diff] [blame] | 47 | <version>1.2.0-SNAPSHOT</version> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 48 | </dependency> |
| 49 | <dependency> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 50 | <groupId>biz.aQute</groupId> |
Richard S. Hall | 6cf6f0b | 2007-04-10 16:50:31 +0000 | [diff] [blame] | 51 | <artifactId>bndlib</artifactId> |
Stuart McCulloch | 04644ae | 2008-01-22 02:56:09 +0000 | [diff] [blame] | 52 | <version>0.0.231</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 55 | <groupId>org.apache.maven</groupId> |
| 56 | <artifactId>maven-project</artifactId> |
| 57 | <version>2.0.7</version> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.apache.maven</groupId> |
| 61 | <artifactId>maven-model</artifactId> |
| 62 | <version>2.0.7</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.apache.maven</groupId> |
| 66 | <artifactId>maven-plugin-api</artifactId> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 67 | <version>2.0.7</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.apache.maven</groupId> |
| 71 | <artifactId>maven-artifact</artifactId> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 72 | <version>2.0.7</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 73 | </dependency> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 74 | <dependency> |
Stuart McCulloch | f978c53 | 2007-12-27 09:16:34 +0000 | [diff] [blame] | 75 | <groupId>org.apache.maven</groupId> |
| 76 | <artifactId>maven-archiver</artifactId> |
| 77 | <version>2.2</version> |
| 78 | </dependency> |
| 79 | <dependency> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 80 | <groupId>org.apache.maven.shared</groupId> |
| 81 | <artifactId>maven-dependency-tree</artifactId> |
Stuart McCulloch | 1e41b2e | 2007-12-20 04:51:36 +0000 | [diff] [blame] | 82 | <version>1.1</version> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.apache.maven.shared</groupId> |
| 86 | <artifactId>maven-osgi</artifactId> |
Stuart McCulloch | 257dfcd | 2007-12-20 15:16:38 +0000 | [diff] [blame] | 87 | <version>0.2.0</version> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>org.codehaus.plexus</groupId> |
| 91 | <artifactId>plexus-container-default</artifactId> |
| 92 | <version>1.0-alpha-9-stable-1</version> |
| 93 | </dependency> |
| 94 | <dependency> |
Stuart McCulloch | dd0d9ba | 2007-12-07 08:22:20 +0000 | [diff] [blame] | 95 | <groupId>org.codehaus.plexus</groupId> |
| 96 | <artifactId>plexus-archiver</artifactId> |
| 97 | <version>1.0-alpha-7</version> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.codehaus.plexus</groupId> |
| 101 | <artifactId>plexus-utils</artifactId> |
| 102 | <version>1.4.1</version> |
| 103 | </dependency> |
| 104 | <dependency> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 105 | <groupId>org.apache.maven.shared</groupId> |
| 106 | <artifactId>maven-plugin-testing-harness</artifactId> |
| 107 | <version>1.1</version> |
| 108 | <scope>test</scope> |
| 109 | </dependency> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 110 | </dependencies> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 111 | </project> |