blob: a306d14a709e1124d435d47b7fb25917556a810c [file] [log] [blame]
Pierre De Rop17b6b8d2010-01-11 21:41:58 +00001<?xml version="1.0" encoding="UTF-8"?>
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
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 -->
Pierre De Rop9615b732010-02-24 22:41:27 +000017<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Marcel Offermanse7951e32010-08-18 13:41:45 +000018 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>
Pierre De Rop9615b732010-02-24 22:41:27 +000020
Marcel Offermanse7951e32010-08-18 13:41:45 +000021 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>dependencymanager-reactor</artifactId>
24 <version>3.0.0-SNAPSHOT</version>
25 </parent>
Pierre De Rop17b6b8d2010-01-11 21:41:58 +000026
Marcel Offermanse7951e32010-08-18 13:41:45 +000027 <name>Apache Felix Dependency Manager Annotation</name>
28 <description>DM annotation API, and corresponding scanner plugins</description>
29 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
30 <packaging>maven-plugin</packaging>
Pierre De Rop9615b732010-02-24 22:41:27 +000031
Marcel Offermanse7951e32010-08-18 13:41:45 +000032 <dependencies>
33 <dependency>
34 <groupId>org.osgi</groupId>
35 <artifactId>org.osgi.core</artifactId>
36 </dependency>
Pierre De Rop9615b732010-02-24 22:41:27 +000037
Marcel Offermanse7951e32010-08-18 13:41:45 +000038 <dependency>
39 <groupId>biz.aQute</groupId>
40 <artifactId>bnd</artifactId>
41 </dependency>
Pierre De Rop17b6b8d2010-01-11 21:41:58 +000042
Marcel Offermanse7951e32010-08-18 13:41:45 +000043 <dependency>
44 <groupId>org.apache.maven</groupId>
45 <artifactId>maven-plugin-api</artifactId>
46 <scope>compile</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.apache.maven</groupId>
50 <artifactId>maven-project</artifactId>
51 <scope>compile</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.maven</groupId>
55 <artifactId>maven-artifact</artifactId>
56 <scope>compile</scope>
57 </dependency>
Pierre De Rop17b6b8d2010-01-11 21:41:58 +000058
Marcel Offermanse7951e32010-08-18 13:41:45 +000059 <dependency>
60 <groupId>org.json</groupId>
61 <artifactId>json</artifactId>
62 <scope>compile</scope>
63 </dependency>
64 </dependencies>
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-compiler-plugin</artifactId>
70 <configuration>
71 <source>1.5</source>
72 <target>1.5</target>
73 </configuration>
74 </plugin>
75 </plugins>
76 </build>
Pierre De Rop17b6b8d2010-01-11 21:41:58 +000077</project>