blob: 419ad2be934de7544259327b59379902cae26775 [file] [log] [blame]
Felix Meschberger00b9b9d2010-10-21 10:55:34 +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-->
19<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">
20
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000023 <groupId>org.apache.felix</groupId>
Carsten Ziegeler9a8a3d62012-08-13 06:10:37 +000024 <artifactId>felix-parent</artifactId>
25 <version>2.1</version>
26 <relativePath>../../pom/pom.xml</relativePath>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000027 </parent>
28
29 <groupId>org.apache.felix</groupId>
30 <artifactId>org.apache.felix.scr.generator</artifactId>
31
Carsten Ziegelerb2853a12013-07-29 12:37:33 +000032 <version>1.8.1-SNAPSHOT</version>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000033 <packaging>jar</packaging>
34
35 <name>Descriptor Generator Implementation</name>
36 <description>
37 Provides the implementation to generate Declarative Services and Metatype
38 Service descriptors from Java 5 Annotations and/or JavaDoc tags.
39 </description>
40
41 <scm>
Carsten Ziegelerb2853a12013-07-29 12:37:33 +000042 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin/generator</connection>
43 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scrplugin/generator</developerConnection>
44 <url>http://svn.apache.org/repos/asf/felix/scrplugin/generator</url>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000045 </scm>
46
47 <dependencies>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000048 <!-- bind/unbind method generation -->
49 <dependency>
Carsten Ziegeler99a93d82012-07-05 09:02:30 +000050 <groupId>org.ow2.asm</groupId>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000051 <artifactId>asm-all</artifactId>
Carsten Ziegeler99a93d82012-07-05 09:02:30 +000052 <version>4.0</version>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000053 <scope>compile</scope>
54 </dependency>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000055 <dependency>
Carsten Ziegeler55c96d32012-06-13 12:03:35 +000056 <groupId>org.osgi</groupId>
57 <artifactId>org.osgi.core</artifactId>
58 <version>4.2.0</version>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000059 </dependency>
60 <dependency>
61 <groupId>org.osgi</groupId>
62 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegeler55c96d32012-06-13 12:03:35 +000063 <version>4.2.0</version>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000064 </dependency>
Carsten Ziegelere58ddff2013-08-14 05:52:12 +000065
66
67 <dependency>
68 <groupId>junit</groupId>
69 <artifactId>junit</artifactId>
70 <version>4.8.1</version>
71 <scope>test</scope>
72 </dependency>
73
74 <dependency>
75 <groupId>org.easymock</groupId>
76 <artifactId>easymock</artifactId>
77 <version>3.2</version>
78 <scope>test</scope>
79 </dependency>
80
81 <dependency>
82 <groupId>commons-lang</groupId>
83 <artifactId>commons-lang</artifactId>
84 <version>2.6</version>
85 <scope>test</scope>
86 </dependency>
87
88 <dependency>
89 <groupId>commons-io</groupId>
90 <artifactId>commons-io</artifactId>
91 <version>2.4</version>
92 <scope>test</scope>
93 </dependency>
94
95 <dependency>
96 <groupId>org.apache.felix</groupId>
97 <artifactId>org.apache.felix.scr.annotations</artifactId>
98 <version>1.9.6</version>
99 <scope>test</scope>
100 </dependency>
101
Felix Meschberger00b9b9d2010-10-21 10:55:34 +0000102 </dependencies>
103
104 <build>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +0000105 <plugins>
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 </plugins>
116 </build>
117</project>