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 | --> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 19 | <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. Hall | fcc2844 | 2006-10-31 17:37:13 +0000 | [diff] [blame] | 23 | <parent> |
| 24 | <artifactId>felix</artifactId> |
| 25 | <groupId>org.apache.felix</groupId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 26 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 27 | <relativePath>../pom/pom.xml</relativePath> |
Richard S. Hall | fcc2844 | 2006-10-31 17:37:13 +0000 | [diff] [blame] | 28 | </parent> |
| 29 | |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 30 | <modelVersion>4.0.0</modelVersion> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 31 | |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 32 | <artifactId>maven-bundle-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 33 | <version>1.1.0-SNAPSHOT</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 34 | <packaging>maven-plugin</packaging> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 35 | |
Richard S. Hall | d532523 | 2006-11-02 20:57:17 +0000 | [diff] [blame] | 36 | <name>Maven Bundle Plugin</name> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 37 | <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. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 44 | |
| 45 | <dependencies> |
| 46 | <dependency> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 47 | <groupId>org.apache.felix</groupId> |
| 48 | <artifactId>maven-obr-plugin</artifactId> |
| 49 | <version>0.1.0-SNAPSHOT</version> |
| 50 | </dependency> |
| 51 | <dependency> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 52 | <groupId>biz.aQute</groupId> |
Richard S. Hall | 6cf6f0b | 2007-04-10 16:50:31 +0000 | [diff] [blame] | 53 | <artifactId>bndlib</artifactId> |
Stuart McCulloch | f07e094 | 2007-11-28 07:40:51 +0000 | [diff] [blame] | 54 | <version>0.0.213</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 55 | </dependency> |
| 56 | <dependency> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 57 | <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. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.apache.maven</groupId> |
| 68 | <artifactId>maven-plugin-api</artifactId> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 69 | <version>2.0.7</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.apache.maven</groupId> |
| 73 | <artifactId>maven-artifact</artifactId> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 74 | <version>2.0.7</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 75 | </dependency> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 76 | <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. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 97 | </dependencies> |
Stuart McCulloch | 55332cf | 2007-11-18 04:02:28 +0000 | [diff] [blame] | 98 | |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 99 | </project> |