blob: c3bab2de96d523af580b9994d2e7ae2cece62795 [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 -->
Pierre De Rop6faf1b02010-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"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Pierre De Rop6ccf9b02010-01-11 21:41:58 +000019 <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 <modelVersion>4.0.0</modelVersion>
26 <groupId>org.apache.felix</groupId>
27 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
28 <version>3.0.0-SNAPSHOT</version>
29 <name>Apache Felix Dependency Manager Annotation</name>
30 <packaging>maven-plugin</packaging>
Pierre De Rop6faf1b02010-02-24 22:41:27 +000031
Pierre De Rop6ccf9b02010-01-11 21:41:58 +000032 <repositories>
33 <repository>
34 <id>maven2-repository.biz.aQute</id>
35 <name>aQute SARL Maven 2 Repository</name>
36 <url>http://www.aqute.biz/repo</url>
37 </repository>
38 </repositories>
39
Pierre De Ropefb92e22010-01-20 22:48:23 +000040 <description>DM annotation API, and corresponding scanner plugins</description>
Pierre De Rop6faf1b02010-02-24 22:41:27 +000041
Pierre De Rop6ccf9b02010-01-11 21:41:58 +000042 <dependencies>
43 <dependency>
Pierre De Rop6faf1b02010-02-24 22:41:27 +000044 <groupId>org.osgi</groupId>
45 <artifactId>org.osgi.core</artifactId>
46 <version>4.1.0</version>
47 </dependency>
48
49 <dependency>
Pierre De Rop6ccf9b02010-01-11 21:41:58 +000050 <groupId>biz.aQute</groupId>
51 <artifactId>bnd</artifactId>
Pierre De Ropbf3bddf2010-04-25 09:34:43 +000052 <version>0.0.401</version>
Pierre De Rop6ccf9b02010-01-11 21:41:58 +000053 </dependency>
54
55 <dependency>
Pierre De Rop6ccf9b02010-01-11 21:41:58 +000056 <groupId>org.apache.maven</groupId>
57 <artifactId>maven-plugin-api</artifactId>
58 <version>2.0</version>
59 <scope>compile</scope>
60 </dependency>
61
62 <dependency>
63 <groupId>org.apache.maven</groupId>
64 <artifactId>maven-project</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-artifact</artifactId>
72 <version>2.0.7</version>
73 <scope>compile</scope>
74 </dependency>
75
76 <dependency>
77 <groupId>org.apache.maven</groupId>
78 <artifactId>maven-plugin-api</artifactId>
79 <version>2.0</version>
80 <scope>compile</scope>
81 </dependency>
82 </dependencies>
83
84 <build>
85 <plugins>
86 <!-- JDK 1.5 needed for annotation support -->
87 <plugin>
Pierre De Rop6faf1b02010-02-24 22:41:27 +000088 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-compiler-plugin</artifactId>
90 <configuration>
91 <source>1.5</source>
92 <target>1.5</target>
93 </configuration>
Pierre De Rop6ccf9b02010-01-11 21:41:58 +000094 </plugin>
95 </plugins>
96 </build>
97</project>