blob: ca8103c405730b5b17d5c0d3e9ecd95f3398ea5e [file] [log] [blame]
Pierre De Rop6ccf9b02010-01-11 21:41:58 +00001<?xml version="1.0" encoding="UTF-8"?>
Marcel Offermans0994a312011-04-27 10:14:59 +00002<!--
Pierre De Rop6ccf9b02010-01-11 21:41:58 +00003 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
9
10 http://www.apache.org/licenses/LICENSE-2.0 Unless required by
11 applicable law or agreed to in writing, software distributed under
12 the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
13 OR CONDITIONS OF ANY KIND, either express or implied. See the
14 License for the specific language governing permissions and
15 limitations under the License.
16 -->
Marcel Offermans0994a312011-04-27 10:14:59 +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">
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>
Marcel Offermans86bfb702011-04-28 22:39:29 +000029 <description>Dependency Manager Annotation API and corresponding scanner plugins</description>
Marcel Offermans0994a312011-04-27 10:14:59 +000030 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
Marcel Offermansc33c7b22011-04-30 08:52:32 +000031 <version>3.0.1-SNAPSHOT</version>
Marcel Offermans0994a312011-04-27 10:14:59 +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>
42 <version>1.15.0</version>
43 </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 </includes>
75 </resource>
76 </resources>
77 <plugins>
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-compiler-plugin</artifactId>
81 <configuration>
82 <source>1.5</source>
83 <target>1.5</target>
84 </configuration>
85 </plugin>
86 </plugins>
87 </build>
Pierre De Rop6ccf9b02010-01-11 21:41:58 +000088</project>