blob: 8b383a9ac4e37f1fbfc420ac908a64f8ae726844 [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>
Carsten Ziegelere5da1612009-05-14 20:05:45 +000023 <artifactId>felix-parent</artifactId>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000024 <groupId>org.apache.felix</groupId>
Carsten Ziegelere5da1612009-05-14 20:05:45 +000025 <version>1.2.0</version>
Carsten Ziegeler3c329e92009-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 Ziegelerac2ce9952010-04-27 10:28:47 +000032 <version>1.4.5-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 Ziegelerac2ce9952010-04-27 10:28:47 +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>
Felix Meschberger0688a5f2009-10-02 13:54:55 +000047 <dependency>
48 <groupId>org.apache.maven</groupId>
49 <artifactId>maven-plugin-api</artifactId>
50 <version>2.0.7</version>
51 </dependency>
Carsten Ziegeler28f2d6d2009-04-15 13:23:10 +000052
Felix Meschberger0688a5f2009-10-02 13:54:55 +000053 <dependency>
54 <groupId>org.apache.maven</groupId>
55 <artifactId>maven-archiver</artifactId>
56 <version>2.2</version>
57 </dependency>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000058
Felix Meschberger0688a5f2009-10-02 13:54:55 +000059 <!-- JavaDoc Tags -->
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000060 <dependency>
61 <groupId>com.thoughtworks.qdox</groupId>
62 <artifactId>qdox</artifactId>
Carsten Ziegeler2ed93f72010-07-14 07:27:58 +000063 <version>1.12</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000064 </dependency>
Carsten Ziegeler829c1932008-02-04 08:34:12 +000065
Felix Meschberger0688a5f2009-10-02 13:54:55 +000066 <!-- SCR Annotations -->
Carsten Ziegelerf63da642009-03-31 17:12:40 +000067 <dependency>
68 <groupId>org.apache.felix</groupId>
Carsten Ziegeler05851d42009-04-18 18:31:43 +000069 <artifactId>org.apache.felix.scr.annotations</artifactId>
Carsten Ziegelerfb8c0da2010-07-19 11:32:29 +000070 <version>1.3.1-SNAPSHOT</version>
Carsten Ziegelerf63da642009-03-31 17:12:40 +000071 </dependency>
Felix Meschberger0688a5f2009-10-02 13:54:55 +000072
73 <!-- Sling Servlet SCR Annotation -->
74 <dependency>
75 <groupId>javax.servlet</groupId>
76 <artifactId>servlet-api</artifactId>
77 <version>2.4</version>
78 <scope>compile</scope>
79 </dependency>
80
81 <!-- bind/unbind method generation -->
82 <dependency>
83 <groupId>asm</groupId>
84 <artifactId>asm-all</artifactId>
85 <version>3.1</version>
86 </dependency>
87
88 <!-- OSGi APIs -->
89 <dependency>
90 <groupId>org.osgi</groupId>
91 <artifactId>org.osgi.core</artifactId>
92 <version>4.0.0</version>
93 <scope>compile</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.osgi</groupId>
97 <artifactId>org.osgi.compendium</artifactId>
98 <version>4.0.0</version>
99 <scope>compile</scope>
100 </dependency>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +0000101 </dependencies>
Carsten Ziegelerf63da642009-03-31 17:12:40 +0000102
103 <build>
104 <plugins>
105
106 <!-- JDK 1.5 needed for annotation support -->
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-compiler-plugin</artifactId>
110 <configuration>
111 <source>1.5</source>
112 <target>1.5</target>
113 </configuration>
114 </plugin>
115
116 </plugins>
117 </build>
118
Stuart McCulloch617bb532008-01-28 08:51:49 +0000119</project>