blob: 0c4014b2973e5ad58109740cfe7b198adfaf193c [file] [log] [blame]
Pierre De Rop17b6b8d2010-01-11 21:41:58 +00001<?xml version="1.0" encoding="UTF-8"?>
Pierre De Rop26d4fd62011-05-18 11:44:18 +00002 <!--
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 Rop17b6b8d2010-01-11 21:41:58 +00009
Pierre De Rop26d4fd62011-05-18 11:44:18 +000010 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 Offermansf0380372013-01-23 14:58:35 +000017<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 Rop26d4fd62011-05-18 11:44:18 +000018 <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 Offermans7fc90a12013-01-23 14:58:55 +000031 <version>3.1.1-SNAPSHOT</version>
Pierre De Rop26d4fd62011-05-18 11:44:18 +000032 <packaging>maven-plugin</packaging>
33 <dependencies>
34 <dependency>
35 <groupId>org.osgi</groupId>
36 <artifactId>org.osgi.core</artifactId>
37 <version>${osgi.version}</version>
38 </dependency>
39 <dependency>
40 <groupId>biz.aQute</groupId>
41 <artifactId>bndlib</artifactId>
Pierre De Rop1ce1b0b2013-01-23 11:13:57 +000042 <version>1.50.0</version>
Pierre De Rop26d4fd62011-05-18 11:44:18 +000043 </dependency>
44 <dependency>
45 <groupId>org.apache.maven</groupId>
46 <artifactId>maven-project</artifactId>
47 <version>2.0.7</version>
48 </dependency>
49 <dependency>
50 <groupId>org.apache.maven</groupId>
51 <artifactId>maven-artifact</artifactId>
52 <version>2.0.7</version>
53 </dependency>
54 <dependency>
55 <groupId>org.apache.maven</groupId>
56 <artifactId>maven-plugin-api</artifactId>
57 <version>2.0</version>
58 </dependency>
59 <dependency>
60 <groupId>org.json</groupId>
61 <artifactId>json</artifactId>
62 <version>20070829</version>
63 </dependency>
64 </dependencies>
65 <build>
66 <resources>
67 <resource>
68 <directory>.</directory>
69 <targetPath>META-INF</targetPath>
70 <includes>
71 <include>LICENSE*</include>
72 <include>NOTICE*</include>
73 <include>DEPENDENCIES*</include>
74 <include>*.txt</include>
75 </includes>
76 </resource>
77 </resources>
78 <plugins>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-compiler-plugin</artifactId>
82 <configuration>
83 <source>1.5</source>
84 <target>1.5</target>
85 </configuration>
86 </plugin>
87 <plugin>
88 <artifactId>maven-dependency-plugin</artifactId>
89 <executions>
90 <execution>
91 <goals>
92 <goal>unpack-dependencies</goal>
93 </goals>
94 <configuration>
95 <includeArtifactIds>
96 json
97 </includeArtifactIds>
98 <outputDirectory>
99 ${project.build.outputDirectory}
100 </outputDirectory>
101 </configuration>
102 </execution>
103 </executions>
104 </plugin>
105 </plugins>
106 </build>
Pierre De Rop17b6b8d2010-01-11 21:41:58 +0000107</project>