Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
| 2 | <!-- |
| 3 | Licensed to the Apache Software Foundation (ASF) under one |
| 4 | or more contributor license agreements. See the NOTICE file |
| 5 | distributed with this work for additional information |
| 6 | regarding copyright ownership. The ASF licenses this file |
| 7 | to you under the Apache License, Version 2.0 (the |
| 8 | "License"); you may not use this file except in compliance |
| 9 | with the License. You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, |
| 14 | software distributed under the License is distributed on an |
| 15 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | KIND, either express or implied. See the License for the |
| 17 | specific language governing permissions and limitations |
| 18 | under the License. |
| 19 | --> |
| 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 21 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 23 | |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
| 26 | <artifactId>felix</artifactId> |
| 27 | <groupId>org.apache.felix</groupId> |
| 28 | <version>1.0.0</version> |
| 29 | </parent> |
| 30 | |
| 31 | <groupId>org.apache.felix</groupId> |
| 32 | <artifactId>maven-scr-plugin</artifactId> |
| 33 | |
| 34 | <version>0.1.0-SNAPSHOT</version> |
| 35 | <packaging>maven-plugin</packaging> |
| 36 | |
| 37 | <name>Maven Scr Plugin</name> |
| 38 | <description> |
| 39 | Maven plugin for generating OSGi service descriptors based on annotations. |
| 40 | </description> |
| 41 | |
| 42 | <scm> |
Carsten Ziegeler | cfea2ac | 2007-08-20 07:37:29 +0000 | [diff] [blame] | 43 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin</connection> |
| 44 | <developerConnection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin</developerConnection> |
| 45 | <url>http://svn.apache.org/repos/asf/felix/scrplugin</url> |
Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 46 | </scm> |
| 47 | |
| 48 | <dependencies> |
| 49 | <dependency> |
| 50 | <groupId>org.osgi</groupId> |
| 51 | <artifactId>osgi_R4_core</artifactId> |
| 52 | <version>1.0</version> |
| 53 | <scope>compile</scope> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.osgi</groupId> |
| 57 | <artifactId>osgi_R4_compendium</artifactId> |
| 58 | <version>1.0</version> |
| 59 | <scope>compile</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.apache.commons</groupId> |
| 63 | <artifactId>commons-io</artifactId> |
| 64 | <version>1.3.2</version> |
| 65 | </dependency> |
| 66 | |
| 67 | <dependency> |
| 68 | <groupId>org.apache.maven</groupId> |
| 69 | <artifactId>maven-plugin-api</artifactId> |
| 70 | <version>2.0.7</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.apache.maven</groupId> |
| 74 | <artifactId>maven-archiver</artifactId> |
| 75 | <version>2.2</version> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>com.thoughtworks.qdox</groupId> |
| 80 | <artifactId>qdox</artifactId> |
| 81 | <version>1.6.3</version> |
| 82 | </dependency> |
| 83 | </dependencies> |
| 84 | </project> |