blob: 0a084326207300985f501ef5600d546d01c838b9 [file] [log] [blame]
Pierre De Rop6ccf9b02010-01-11 21:41:58 +00001<?xml version="1.0" encoding="UTF-8"?>
Pierre De Ropcc7f4f72011-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 Rop6ccf9b02010-01-11 21:41:58 +00009
Pierre De Ropcc7f4f72011-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 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
24 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
26 <properties>
27 <osgi.version>4.2.0</osgi.version>
28 </properties>
29 <name>Apache Felix Dependency Manager Annotation</name>
30 <description>Dependency Manager Annotation API and corresponding scanner plugins</description>
31 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
Pierre De Rop2b7b25e2011-05-21 22:14:54 +000032 <version>3.1.0-SNAPSHOT</version>
Pierre De Ropcc7f4f72011-05-18 11:44:18 +000033 <packaging>maven-plugin</packaging>
34 <dependencies>
35 <dependency>
36 <groupId>org.osgi</groupId>
37 <artifactId>org.osgi.core</artifactId>
38 <version>${osgi.version}</version>
39 </dependency>
40 <dependency>
41 <groupId>biz.aQute</groupId>
42 <artifactId>bndlib</artifactId>
43 <version>1.15.0</version>
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 Rop6ccf9b02010-01-11 21:41:58 +0000108</project>