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> |
Richard S. Hall | 8baa593 | 2006-12-06 15:53:52 +0000 | [diff] [blame] | 26 | <version>0.9.0-incubator-SNAPSHOT</version> |
Richard S. Hall | fcc2844 | 2006-10-31 17:37:13 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 29 | <modelVersion>4.0.0</modelVersion> |
| 30 | <groupId>org.apache.felix</groupId> |
| 31 | <artifactId>maven-bundle-plugin</artifactId> |
| 32 | |
| 33 | <repositories> |
| 34 | <repository> |
| 35 | <id>aQute</id> |
| 36 | <url>http://www.aQute.biz/repo</url> |
| 37 | </repository> |
| 38 | </repositories> |
| 39 | |
| 40 | <packaging>maven-plugin</packaging> |
Richard S. Hall | d532523 | 2006-11-02 20:57:17 +0000 | [diff] [blame] | 41 | <name>Maven Bundle Plugin</name> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 42 | <description> provides a maven plugin that allows that builds the jar by |
| 43 | embedding packages from the classpath (wildcarded). Plus a zillion |
| 44 | other features. See http://www.aqute.biz/php/tools/bnd.php |
| 45 | </description> |
Richard S. Hall | 8baa593 | 2006-12-06 15:53:52 +0000 | [diff] [blame] | 46 | <version>0.9.0-incubator-SNAPSHOT</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 47 | |
| 48 | <dependencies> |
| 49 | <dependency> |
| 50 | <groupId>biz.aQute</groupId> |
| 51 | <artifactId>bnd</artifactId> |
Michael E. Rodriguez | 2e060cf | 2007-03-13 17:59:59 +0000 | [diff] [blame^] | 52 | <version>0.0.116</version> |
Richard S. Hall | f312009 | 2006-10-31 17:32:16 +0000 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>junit</groupId> |
| 56 | <artifactId>junit</artifactId> |
| 57 | <version>3.8.1</version> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.apache.maven</groupId> |
| 61 | <artifactId>maven-plugin-api</artifactId> |
| 62 | <version>2.0</version> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.apache.maven</groupId> |
| 66 | <artifactId>maven-archiver</artifactId> |
| 67 | <version>2.0</version> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.apache.maven</groupId> |
| 71 | <artifactId>maven-artifact</artifactId> |
| 72 | <version>2.0</version> |
| 73 | </dependency> |
| 74 | </dependencies> |
| 75 | </project> |