Benson Margulies | 039a39b | 2015-10-24 18:30:28 +0000 | [diff] [blame] | 1 | <?xml version='1.0' encoding='UTF-8'?> |
| 2 | <!-- |
| 3 | Licensed to the Apache Software Foundation (ASF) under one |
| 4 | or more contributor license agreements. See the NOTICE file |
| 5 | distributed with this work for additional information |
| 6 | regarding copyright ownership. The ASF licenses this file |
| 7 | to you under the Apache License, Version 2.0 (the |
| 8 | "License"); you may not use this file except in compliance |
| 9 | with the License. You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, |
| 14 | software distributed under the License is distributed on an |
| 15 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | KIND, either express or implied. See the License for the |
| 17 | specific language governing permissions and limitations |
| 18 | under the License. |
| 19 | --> |
| 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <groupId>org.apache.felix.bundleits</groupId> |
| 24 | <artifactId>embed-multiple-artifacts</artifactId> |
| 25 | <version>1-SNAPSHOT</version> |
| 26 | <packaging>bundle</packaging> |
| 27 | <dependencies> |
| 28 | <dependency> |
| 29 | <groupId>commons-io</groupId> |
| 30 | <artifactId>commons-io</artifactId> |
| 31 | <version>2.4</version> |
| 32 | </dependency> |
| 33 | <dependency> |
| 34 | <groupId>org.apache.commons</groupId> |
| 35 | <artifactId>commons-compress</artifactId> |
| 36 | <version>1.10</version> |
| 37 | </dependency> |
| 38 | </dependencies> |
| 39 | <build> |
| 40 | <plugins> |
| 41 | <plugin> |
| 42 | <groupId>org.apache.felix</groupId> |
| 43 | <artifactId>maven-bundle-plugin</artifactId> |
| 44 | <version>@project.version@</version> |
| 45 | <extensions>true</extensions> |
| 46 | <configuration> |
| 47 | <instructions> |
| 48 | <Embed-Dependency>commons-io,commons-compress</Embed-Dependency> |
| 49 | </instructions> |
| 50 | </configuration> |
| 51 | </plugin> |
| 52 | </plugins> |
| 53 | </build> |
| 54 | </project> |