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> |
| 31 | <groupId>org.apache.felix</groupId> |
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 | |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 35 | <packaging>maven-plugin</packaging> |
Richard S. Hall | d532523 | 2006-11-02 20:57:17 +0000 | [diff] [blame] | 36 | <name>Maven Bundle Plugin</name> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 37 | <description> provides a maven plugin that allows that builds the jar by |
| 38 | embedding packages from the classpath (wildcarded). Plus a zillion |
| 39 | other features. See http://www.aqute.biz/php/tools/bnd.php |
| 40 | </description> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 41 | |
| 42 | <dependencies> |
| 43 | <dependency> |
| 44 | <groupId>biz.aQute</groupId> |
Richard S. Hall | 6cf6f0b | 2007-04-10 16:50:31 +0000 | [diff] [blame] | 45 | <artifactId>bndlib</artifactId> |
Richard S. Hall | 3bc6d0b | 2007-07-09 17:48:07 +0000 | [diff] [blame] | 46 | <version>0.0.160</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>junit</groupId> |
| 50 | <artifactId>junit</artifactId> |
| 51 | <version>3.8.1</version> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.apache.maven</groupId> |
| 55 | <artifactId>maven-plugin-api</artifactId> |
Richard S. Hall | 6cf6f0b | 2007-04-10 16:50:31 +0000 | [diff] [blame] | 56 | <version>2.0.6</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.apache.maven</groupId> |
| 60 | <artifactId>maven-archiver</artifactId> |
Richard S. Hall | 6cf6f0b | 2007-04-10 16:50:31 +0000 | [diff] [blame] | 61 | <version>2.2</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.apache.maven</groupId> |
| 65 | <artifactId>maven-artifact</artifactId> |
Richard S. Hall | 6cf6f0b | 2007-04-10 16:50:31 +0000 | [diff] [blame] | 66 | <version>2.0.6</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 67 | </dependency> |
Richard S. Hall | 6cf6f0b | 2007-04-10 16:50:31 +0000 | [diff] [blame] | 68 | <dependency> |
| 69 | <groupId>org.apache.maven.shared</groupId> |
| 70 | <artifactId>maven-dependency-tree</artifactId> |
Richard S. Hall | 3e0fda3 | 2007-04-27 17:03:49 +0000 | [diff] [blame] | 71 | <version>1.0</version> |
Richard S. Hall | 6cf6f0b | 2007-04-10 16:50:31 +0000 | [diff] [blame] | 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.apache.maven.shared</groupId> |
| 75 | <artifactId>maven-plugin-testing-harness</artifactId> |
Richard S. Hall | 3e0fda3 | 2007-04-27 17:03:49 +0000 | [diff] [blame] | 76 | <version>1.0</version> |
Richard S. Hall | 6cf6f0b | 2007-04-10 16:50:31 +0000 | [diff] [blame] | 77 | <scope>test</scope> |
| 78 | </dependency> |
Richard S. Hall | 17b8e3d | 2007-06-13 16:20:40 +0000 | [diff] [blame] | 79 | <dependency> |
| 80 | <groupId>org.apache.maven.shared</groupId> |
| 81 | <artifactId>maven-osgi</artifactId> |
Karl Pauls | b2afde6 | 2007-07-12 08:35:56 +0000 | [diff] [blame] | 82 | <version>0.1.0</version> |
Richard S. Hall | 17b8e3d | 2007-06-13 16:20:40 +0000 | [diff] [blame] | 83 | </dependency> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 84 | </dependencies> |
| 85 | </project> |