Pierre De Rop | 17b6b8d | 2010-01-11 21:41:58 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Pierre De Rop | 26d4fd6 | 2011-05-18 11:44:18 +0000 | [diff] [blame] | 2 | <!-- |
| 3 | Licensed to the Apache Software Foundation (ASF) under one or more |
| 4 | contributor license agreements. See the NOTICE file distributed with |
| 5 | this work for additional information regarding copyright ownership. |
| 6 | The ASF licenses this file to you under the Apache License, Version |
| 7 | 2.0 (the "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
Pierre De Rop | 17b6b8d | 2010-01-11 21:41:58 +0000 | [diff] [blame] | 9 | |
Pierre De Rop | 26d4fd6 | 2011-05-18 11:44:18 +0000 | [diff] [blame] | 10 | http://www.apache.org/licenses/LICENSE-2.0 Unless required by |
| 11 | applicable law or agreed to in writing, software distributed under the |
| 12 | License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR |
| 13 | CONDITIONS OF ANY KIND, either express or implied. See the License for |
| 14 | the specific language governing permissions and limitations under the |
| 15 | License. |
| 16 | --> |
Marcel Offermans | f038037 | 2013-01-23 14:58:35 +0000 | [diff] [blame] | 17 | <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"> |
Pierre De Rop | 26d4fd6 | 2011-05-18 11:44:18 +0000 | [diff] [blame] | 18 | <modelVersion>4.0.0</modelVersion> |
| 19 | <parent> |
| 20 | <groupId>org.apache.felix</groupId> |
| 21 | <artifactId>felix-parent</artifactId> |
| 22 | <version>1.2.0</version> |
| 23 | <relativePath>../../pom/pom.xml</relativePath> |
| 24 | </parent> |
| 25 | <properties> |
| 26 | <osgi.version>4.2.0</osgi.version> |
| 27 | </properties> |
| 28 | <name>Apache Felix Dependency Manager Annotation</name> |
| 29 | <description>Dependency Manager Annotation API and corresponding scanner plugins</description> |
| 30 | <artifactId>org.apache.felix.dependencymanager.annotation</artifactId> |
Marcel Offermans | 7fc90a1 | 2013-01-23 14:58:55 +0000 | [diff] [blame] | 31 | <version>3.1.1-SNAPSHOT</version> |
Pierre De Rop | 26d4fd6 | 2011-05-18 11:44:18 +0000 | [diff] [blame] | 32 | <packaging>maven-plugin</packaging> |
Pierre De Rop | d314789 | 2013-09-15 21:37:43 +0000 | [diff] [blame] | 33 | |
Pierre De Rop | 26d4fd6 | 2011-05-18 11:44:18 +0000 | [diff] [blame] | 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.osgi</groupId> |
| 37 | <artifactId>org.osgi.core</artifactId> |
| 38 | <version>${osgi.version}</version> |
| 39 | </dependency> |
| 40 | <dependency> |
Pierre De Rop | d314789 | 2013-09-15 21:37:43 +0000 | [diff] [blame] | 41 | <groupId>biz.aQute.bnd</groupId> |
Pierre De Rop | 26d4fd6 | 2011-05-18 11:44:18 +0000 | [diff] [blame] | 42 | <artifactId>bndlib</artifactId> |
Pierre De Rop | d314789 | 2013-09-15 21:37:43 +0000 | [diff] [blame] | 43 | <version>2.1.0</version> |
Pierre De Rop | 26d4fd6 | 2011-05-18 11:44:18 +0000 | [diff] [blame] | 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.apache.maven</groupId> |
| 47 | <artifactId>maven-project</artifactId> |
| 48 | <version>2.0.7</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.apache.maven</groupId> |
| 52 | <artifactId>maven-artifact</artifactId> |
| 53 | <version>2.0.7</version> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.apache.maven</groupId> |
| 57 | <artifactId>maven-plugin-api</artifactId> |
| 58 | <version>2.0</version> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.json</groupId> |
| 62 | <artifactId>json</artifactId> |
| 63 | <version>20070829</version> |
| 64 | </dependency> |
| 65 | </dependencies> |
| 66 | <build> |
| 67 | <resources> |
| 68 | <resource> |
| 69 | <directory>.</directory> |
| 70 | <targetPath>META-INF</targetPath> |
| 71 | <includes> |
| 72 | <include>LICENSE*</include> |
| 73 | <include>NOTICE*</include> |
| 74 | <include>DEPENDENCIES*</include> |
| 75 | <include>*.txt</include> |
| 76 | </includes> |
| 77 | </resource> |
| 78 | </resources> |
| 79 | <plugins> |
| 80 | <plugin> |
| 81 | <groupId>org.apache.maven.plugins</groupId> |
| 82 | <artifactId>maven-compiler-plugin</artifactId> |
| 83 | <configuration> |
| 84 | <source>1.5</source> |
| 85 | <target>1.5</target> |
| 86 | </configuration> |
| 87 | </plugin> |
| 88 | <plugin> |
| 89 | <artifactId>maven-dependency-plugin</artifactId> |
| 90 | <executions> |
| 91 | <execution> |
| 92 | <goals> |
| 93 | <goal>unpack-dependencies</goal> |
| 94 | </goals> |
| 95 | <configuration> |
| 96 | <includeArtifactIds> |
| 97 | json |
| 98 | </includeArtifactIds> |
| 99 | <outputDirectory> |
| 100 | ${project.build.outputDirectory} |
| 101 | </outputDirectory> |
| 102 | </configuration> |
| 103 | </execution> |
| 104 | </executions> |
| 105 | </plugin> |
| 106 | </plugins> |
| 107 | </build> |
Pierre De Rop | 17b6b8d | 2010-01-11 21:41:58 +0000 | [diff] [blame] | 108 | </project> |