blob: 600f0e2b58db55712869e464b1f95d3703fc0759 [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 Ziegeler9aa4f3b2009-05-14 20:05:45 +000023 <artifactId>felix-parent</artifactId>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000024 <groupId>org.apache.felix</groupId>
Carsten Ziegeler9aa4f3b2009-05-14 20:05:45 +000025 <version>1.2.0</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 Ziegelerf7fccad2009-06-12 15:46:13 +000032 <version>1.4.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 Ziegelerf6aeae82009-05-20 06:30:22 +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>
Carsten Ziegeler4a2ed362009-04-22 07:48:37 +000058 <exclusions>
59 <!-- exclude foundation jar, conflicts with JDK 1.5 library classes -->
60 <exclusion>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>org.osgi.foundation</artifactId>
63 </exclusion>
64 </exclusions>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000065 </dependency>
Carsten Ziegeler8ce086c2007-09-03 10:49:49 +000066
67 <dependency>
Carsten Ziegeler81093272009-04-15 13:23:10 +000068 <groupId>asm</groupId>
69 <artifactId>asm-all</artifactId>
70 <version>3.1</version>
Carsten Ziegeler8ce086c2007-09-03 10:49:49 +000071 </dependency>
Carsten Ziegeler81093272009-04-15 13:23:10 +000072
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000073 <dependency>
Carsten Ziegeler727c0cc2008-01-28 08:21:10 +000074 <groupId>commons-io</groupId>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000075 <artifactId>commons-io</artifactId>
Carsten Ziegeler727c0cc2008-01-28 08:21:10 +000076 <version>1.4</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000077 </dependency>
78
79 <dependency>
80 <groupId>org.apache.maven</groupId>
81 <artifactId>maven-plugin-api</artifactId>
82 <version>2.0.7</version>
83 </dependency>
Carsten Ziegeler829c1932008-02-04 08:34:12 +000084
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000085 <dependency>
86 <groupId>org.apache.maven</groupId>
87 <artifactId>maven-archiver</artifactId>
88 <version>2.2</version>
89 </dependency>
90
91 <dependency>
92 <groupId>com.thoughtworks.qdox</groupId>
93 <artifactId>qdox</artifactId>
Carsten Ziegelerfd070662009-05-20 06:28:21 +000094 <version>1.9.1</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000095 </dependency>
Carsten Ziegeler829c1932008-02-04 08:34:12 +000096
97 <!-- Logging support -->
98 <dependency>
99 <groupId>org.slf4j</groupId>
100 <artifactId>slf4j-api</artifactId>
101 <version>1.4.3</version>
102 </dependency>
103 <dependency>
104 <groupId>org.slf4j</groupId>
105 <artifactId>slf4j-simple</artifactId>
106 <version>1.4.3</version>
107 </dependency>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +0000108
109 <dependency>
110 <groupId>org.apache.felix</groupId>
Carsten Ziegelerba751bd2009-04-18 18:31:43 +0000111 <artifactId>org.apache.felix.scr.annotations</artifactId>
Carsten Ziegelerf7fccad2009-06-12 15:46:13 +0000112 <version>1.0.0-SNAPSHOT</version>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +0000113 </dependency>
114
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +0000115 </dependencies>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +0000116
117 <build>
118 <plugins>
119
120 <!-- JDK 1.5 needed for annotation support -->
121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-compiler-plugin</artifactId>
124 <configuration>
125 <source>1.5</source>
126 <target>1.5</target>
127 </configuration>
128 </plugin>
129
130 </plugins>
131 </build>
132
Stuart McCulloch617bb532008-01-28 08:51:49 +0000133</project>