blob: 7495510b20ddd63b8a5e0ffcf243371d968f352a [file] [log] [blame]
Pierre De Rop17b6b8d2010-01-11 21:41:58 +00001<?xml version="1.0" encoding="UTF-8"?>
Marcel Offermans89c60cc2011-04-27 10:14:59 +00002<!--
Pierre De Rop17b6b8d2010-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 Offermans89c60cc2011-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 Offermansc2664ea2011-04-28 22:39:29 +000029 <description>Dependency Manager Annotation API and corresponding scanner plugins</description>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000030 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
Marcel Offermansc6ed41c2011-05-01 12:04:16 +000031 <version>3.0.1-SNAPSHOT</version>
Marcel Offermans89c60cc2011-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>
Marcel Offermans5f8fb372011-05-01 10:57:57 +000074 <include>*.txt</include>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000075 </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 </plugins>
88 </build>
Pierre De Rop17b6b8d2010-01-11 21:41:58 +000089</project>