blob: 2ffdd60e95b81f1207e190124c68541c1a4fa719 [file] [log] [blame]
Carsten Ziegelerca034f42007-08-24 07:43:23 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "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
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Carsten Ziegeler4490ee92007-08-24 07:39:56 +000019<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">
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000020
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <artifactId>felix</artifactId>
24 <groupId>org.apache.felix</groupId>
Carsten Ziegeler646b9f12008-01-16 07:44:32 +000025 <version>1.0.2</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000026 </parent>
27
28 <groupId>org.apache.felix</groupId>
29 <artifactId>maven-scr-plugin</artifactId>
30
Carsten Ziegeleraba73db2008-01-07 10:35:55 +000031 <version>1.0.3-SNAPSHOT</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000032 <packaging>maven-plugin</packaging>
33
Carsten Ziegeler1bcecbb2007-08-27 14:40:26 +000034 <name>Maven SCR Plugin</name>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000035 <description>
36 Maven plugin for generating OSGi service descriptors based on annotations.
37 </description>
38
39 <scm>
Carsten Ziegeleraba73db2008-01-07 10:35:55 +000040 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin</connection>
41 <developerConnection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin</developerConnection>
42 <url>http://svn.apache.org/repos/asf/felix/scrplugin</url>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000043 </scm>
44
45 <dependencies>
46 <dependency>
Carsten Ziegeler727c0cc2008-01-28 08:21:10 +000047 <groupId>org.apache.felix</groupId>
48 <artifactId>org.osgi.core</artifactId>
49 <version>1.0.0</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000050 <scope>compile</scope>
51 </dependency>
52 <dependency>
Carsten Ziegeler727c0cc2008-01-28 08:21:10 +000053 <groupId>org.apache.felix</groupId>
54 <artifactId>org.osgi.core.compendium</artifactId>
55 <version>1.0.0</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000056 <scope>compile</scope>
57 </dependency>
Carsten Ziegeler8ce086c2007-09-03 10:49:49 +000058
59 <dependency>
60 <groupId>asm</groupId>
61 <artifactId>asm-all</artifactId>
62 <version>3.0</version>
63 </dependency>
64
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000065 <dependency>
Carsten Ziegeler727c0cc2008-01-28 08:21:10 +000066 <groupId>commons-io</groupId>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000067 <artifactId>commons-io</artifactId>
Carsten Ziegeler727c0cc2008-01-28 08:21:10 +000068 <version>1.4</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000069 </dependency>
70
71 <dependency>
72 <groupId>org.apache.maven</groupId>
73 <artifactId>maven-plugin-api</artifactId>
74 <version>2.0.7</version>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.maven</groupId>
78 <artifactId>maven-archiver</artifactId>
79 <version>2.2</version>
80 </dependency>
81
82 <dependency>
83 <groupId>com.thoughtworks.qdox</groupId>
84 <artifactId>qdox</artifactId>
85 <version>1.6.3</version>
86 </dependency>
87 </dependencies>
Carsten Ziegeler80ed0372007-08-22 09:16:40 +000088</project>