blob: 5810d8c3dfcf879e086bb558193bb57debb920e4 [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 Ziegeler985cacb2009-03-12 07:36:19 +000025 <version>1.0.4</version>
Carsten Ziegelerb5618fe2009-03-31 17:18:17 +000026 <relativePath>../pom/pom.xml</relativePath>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000027 </parent>
28
29 <groupId>org.apache.felix</groupId>
30 <artifactId>maven-scr-plugin</artifactId>
31
Carsten Ziegelerb5618fe2009-03-31 17:18:17 +000032 <version>1.1.0-SNAPSHOT</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000033 <packaging>maven-plugin</packaging>
34
Carsten Ziegeler1bcecbb2007-08-27 14:40:26 +000035 <name>Maven SCR Plugin</name>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000036 <description>
37 Maven plugin for generating OSGi service descriptors based on annotations.
38 </description>
39
40 <scm>
Carsten Ziegeler27d357b2009-03-12 07:52:40 +000041 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin</connection>
42 <developerConnection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin</developerConnection>
43 <url>http://svn.apache.org/repos/asf/felix/scrplugin</url>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000044 </scm>
45
46 <dependencies>
47 <dependency>
Carsten Ziegeler727c0cc2008-01-28 08:21:10 +000048 <groupId>org.apache.felix</groupId>
49 <artifactId>org.osgi.core</artifactId>
50 <version>1.0.0</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000051 <scope>compile</scope>
52 </dependency>
53 <dependency>
Stuart McCulloch617bb532008-01-28 08:51:49 +000054 <groupId>org.apache.felix</groupId>
55 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegeler727c0cc2008-01-28 08:21:10 +000056 <version>1.0.0</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000057 <scope>compile</scope>
58 </dependency>
Carsten Ziegeler8ce086c2007-09-03 10:49:49 +000059
60 <dependency>
61 <groupId>asm</groupId>
62 <artifactId>asm-all</artifactId>
63 <version>3.0</version>
64 </dependency>
65
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000066 <dependency>
Carsten Ziegeler727c0cc2008-01-28 08:21:10 +000067 <groupId>commons-io</groupId>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000068 <artifactId>commons-io</artifactId>
Carsten Ziegeler727c0cc2008-01-28 08:21:10 +000069 <version>1.4</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000070 </dependency>
71
72 <dependency>
73 <groupId>org.apache.maven</groupId>
74 <artifactId>maven-plugin-api</artifactId>
75 <version>2.0.7</version>
76 </dependency>
Carsten Ziegeler829c1932008-02-04 08:34:12 +000077
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000078 <dependency>
79 <groupId>org.apache.maven</groupId>
80 <artifactId>maven-archiver</artifactId>
81 <version>2.2</version>
82 </dependency>
83
84 <dependency>
85 <groupId>com.thoughtworks.qdox</groupId>
86 <artifactId>qdox</artifactId>
Carsten Ziegeler0ce1d0d2009-03-18 10:05:47 +000087 <version>1.9</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000088 </dependency>
Carsten Ziegeler829c1932008-02-04 08:34:12 +000089
90 <!-- Logging support -->
91 <dependency>
92 <groupId>org.slf4j</groupId>
93 <artifactId>slf4j-api</artifactId>
94 <version>1.4.3</version>
95 </dependency>
96 <dependency>
97 <groupId>org.slf4j</groupId>
98 <artifactId>slf4j-simple</artifactId>
99 <version>1.4.3</version>
100 </dependency>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +0000101
102 <dependency>
103 <groupId>org.apache.felix</groupId>
104 <artifactId>maven-scr-plugin-annotations</artifactId>
Carsten Ziegelerb5618fe2009-03-31 17:18:17 +0000105 <version>0.9.0-SNAPSHOT</version>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +0000106 </dependency>
107
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +0000108 </dependencies>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +0000109
110 <build>
111 <plugins>
112
113 <!-- JDK 1.5 needed for annotation support -->
114 <plugin>
115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-compiler-plugin</artifactId>
117 <configuration>
118 <source>1.5</source>
119 <target>1.5</target>
120 </configuration>
121 </plugin>
122
123 </plugins>
124 </build>
125
Stuart McCulloch617bb532008-01-28 08:51:49 +0000126</project>