Pierre De Rop | 17b6b8d | 2010-01-11 21:41:58 +0000 | [diff] [blame] | 1 | <?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 Rop | 9615b73 | 2010-02-24 22:41:27 +0000 | [diff] [blame] | 17 | <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 Rop | 17b6b8d | 2010-01-11 21:41:58 +0000 | [diff] [blame] | 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 | <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 Rop | 9615b73 | 2010-02-24 22:41:27 +0000 | [diff] [blame] | 31 | |
Pierre De Rop | 17b6b8d | 2010-01-11 21:41:58 +0000 | [diff] [blame] | 32 | <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 Rop | 3abf9a3 | 2010-01-20 22:48:23 +0000 | [diff] [blame] | 40 | <description>DM annotation API, and corresponding scanner plugins</description> |
Pierre De Rop | 9615b73 | 2010-02-24 22:41:27 +0000 | [diff] [blame] | 41 | |
Pierre De Rop | 17b6b8d | 2010-01-11 21:41:58 +0000 | [diff] [blame] | 42 | <dependencies> |
| 43 | <dependency> |
Pierre De Rop | 9615b73 | 2010-02-24 22:41:27 +0000 | [diff] [blame] | 44 | <groupId>org.osgi</groupId> |
| 45 | <artifactId>org.osgi.core</artifactId> |
| 46 | <version>4.1.0</version> |
| 47 | </dependency> |
| 48 | |
| 49 | <dependency> |
Pierre De Rop | 17b6b8d | 2010-01-11 21:41:58 +0000 | [diff] [blame] | 50 | <groupId>biz.aQute</groupId> |
| 51 | <artifactId>bnd</artifactId> |
Pierre De Rop | 1fb3590 | 2010-04-25 09:34:43 +0000 | [diff] [blame] | 52 | <version>0.0.401</version> |
Pierre De Rop | 17b6b8d | 2010-01-11 21:41:58 +0000 | [diff] [blame] | 53 | </dependency> |
| 54 | |
| 55 | <dependency> |
Pierre De Rop | 17b6b8d | 2010-01-11 21:41:58 +0000 | [diff] [blame] | 56 | <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> |
Pierre De Rop | 575a2f7 | 2010-05-23 08:20:50 +0000 | [diff] [blame] | 82 | |
| 83 | <dependency> |
| 84 | <groupId>org.json</groupId> |
| 85 | <artifactId>json</artifactId> |
| 86 | <version>20070829</version> |
| 87 | <scope>compile</scope> |
| 88 | </dependency> |
Pierre De Rop | 17b6b8d | 2010-01-11 21:41:58 +0000 | [diff] [blame] | 89 | </dependencies> |
| 90 | |
| 91 | <build> |
| 92 | <plugins> |
| 93 | <!-- JDK 1.5 needed for annotation support --> |
| 94 | <plugin> |
Pierre De Rop | 9615b73 | 2010-02-24 22:41:27 +0000 | [diff] [blame] | 95 | <groupId>org.apache.maven.plugins</groupId> |
| 96 | <artifactId>maven-compiler-plugin</artifactId> |
| 97 | <configuration> |
| 98 | <source>1.5</source> |
| 99 | <target>1.5</target> |
| 100 | </configuration> |
Pierre De Rop | 17b6b8d | 2010-01-11 21:41:58 +0000 | [diff] [blame] | 101 | </plugin> |
| 102 | </plugins> |
| 103 | </build> |
| 104 | </project> |