blob: 146d7f7e32bbb176a01a1960b0b44ba4bfd96a69 [file] [log] [blame]
Pierre De Rop6ccf9b02010-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 -->
17<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 <parent>
19 <groupId>org.apache.felix</groupId>
20 <artifactId>felix-parent</artifactId>
21 <version>1.2.0</version>
22 <relativePath>../../pom/pom.xml</relativePath>
23 </parent>
24 <modelVersion>4.0.0</modelVersion>
25 <groupId>org.apache.felix</groupId>
26 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
27 <version>3.0.0-SNAPSHOT</version>
28 <name>Apache Felix Dependency Manager Annotation</name>
29 <packaging>maven-plugin</packaging>
30
31 <repositories>
32 <repository>
33 <id>maven2-repository.biz.aQute</id>
34 <name>aQute SARL Maven 2 Repository</name>
35 <url>http://www.aqute.biz/repo</url>
36 </repository>
37 </repositories>
38
Pierre De Ropefb92e22010-01-20 22:48:23 +000039 <description>DM annotation API, and corresponding scanner plugins</description>
Pierre De Rop6ccf9b02010-01-11 21:41:58 +000040
41 <dependencies>
42 <dependency>
43 <groupId>biz.aQute</groupId>
44 <artifactId>bnd</artifactId>
Pierre De Rop3401ceb2010-02-03 23:04:12 +000045 <version>0.0.394</version>
Pierre De Rop6ccf9b02010-01-11 21:41:58 +000046 </dependency>
47
48 <dependency>
Pierre De Rop6ccf9b02010-01-11 21:41:58 +000049 <groupId>org.apache.maven</groupId>
50 <artifactId>maven-plugin-api</artifactId>
51 <version>2.0</version>
52 <scope>compile</scope>
53 </dependency>
54
55 <dependency>
56 <groupId>org.apache.maven</groupId>
57 <artifactId>maven-project</artifactId>
58 <version>2.0.7</version>
59 <scope>compile</scope>
60 </dependency>
61
62 <dependency>
63 <groupId>org.apache.maven</groupId>
64 <artifactId>maven-artifact</artifactId>
65 <version>2.0.7</version>
66 <scope>compile</scope>
67 </dependency>
68
69 <dependency>
70 <groupId>org.apache.maven</groupId>
71 <artifactId>maven-plugin-api</artifactId>
72 <version>2.0</version>
73 <scope>compile</scope>
74 </dependency>
75 </dependencies>
76
77 <build>
78 <plugins>
79 <!-- JDK 1.5 needed for annotation support -->
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 </plugins>
89 </build>
90</project>