blob: a704547ec03d82b8256a8fe6d655d39f4e20f7a7 [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 Ziegeler4ccaaeb2007-08-20 07:20:03 +000026 </parent>
27
28 <groupId>org.apache.felix</groupId>
29 <artifactId>maven-scr-plugin</artifactId>
30
Carsten Ziegeler27d357b2009-03-12 07:52:40 +000031 <version>1.0.11-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 Ziegeler27d357b2009-03-12 07:52:40 +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>
Stuart McCulloch617bb532008-01-28 08:51:49 +000053 <groupId>org.apache.felix</groupId>
54 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegeler727c0cc2008-01-28 08:21:10 +000055 <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>
Carsten Ziegeler829c1932008-02-04 08:34:12 +000076
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000077 <dependency>
78 <groupId>org.apache.maven</groupId>
79 <artifactId>maven-archiver</artifactId>
80 <version>2.2</version>
81 </dependency>
82
83 <dependency>
84 <groupId>com.thoughtworks.qdox</groupId>
85 <artifactId>qdox</artifactId>
Carsten Ziegeler0ce1d0d2009-03-18 10:05:47 +000086 <version>1.9</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000087 </dependency>
Carsten Ziegeler829c1932008-02-04 08:34:12 +000088
89 <!-- Logging support -->
90 <dependency>
91 <groupId>org.slf4j</groupId>
92 <artifactId>slf4j-api</artifactId>
93 <version>1.4.3</version>
94 </dependency>
95 <dependency>
96 <groupId>org.slf4j</groupId>
97 <artifactId>slf4j-simple</artifactId>
98 <version>1.4.3</version>
99 </dependency>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +0000100
101 <dependency>
102 <groupId>org.apache.felix</groupId>
103 <artifactId>maven-scr-plugin-annotations</artifactId>
104 <version>1.0.11-SNAPSHOT</version>
105 </dependency>
106
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +0000107 </dependencies>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +0000108
109 <build>
110 <plugins>
111
112 <!-- JDK 1.5 needed for annotation support -->
113 <plugin>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-compiler-plugin</artifactId>
116 <configuration>
117 <source>1.5</source>
118 <target>1.5</target>
119 </configuration>
120 </plugin>
121
122 </plugins>
123 </build>
124
Stuart McCulloch617bb532008-01-28 08:51:49 +0000125</project>