blob: e7b78ea7a76e2c66fe78f5894bd5123af7930e63 [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.ant</artifactId>
31
Carsten Ziegelerc5580392015-04-23 15:46:13 +000032 <version>1.14.1-SNAPSHOT</version>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000033 <packaging>jar</packaging>
34
35 <name>SCR Ant Task</name>
36 <description>
37 Implements the Ant Task to generate Declarative Services and Metatype
38 Service descriptors from Java 5 annotations and/or JavaDoc tags.
39 </description>
40
41 <scm>
Carsten Ziegelerc5580392015-04-23 15:46:13 +000042 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin/scrtask</connection>
43 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scrplugin/scrtask</developerConnection>
44 <url>http://svn.apache.org/repos/asf/felix/scrplugin/scrtask</url>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000045 </scm>
46
47 <dependencies>
48 <dependency>
49 <groupId>org.apache.ant</groupId>
50 <artifactId>ant</artifactId>
51 <version>1.7.0</version>
52 <scope>provided</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>org.apache.felix.scr.generator</artifactId>
Carsten Ziegeler5a8a3bf2015-04-23 15:53:25 +000057 <version>1.13.1-SNAPSHOT</version>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000058 <scope>compile</scope>
59 </dependency>
Carsten Ziegeler9a8a3d62012-08-13 06:10:37 +000060 <dependency>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>org.apache.felix.scr.annotations</artifactId>
Carsten Ziegeler5a8a3bf2015-04-23 15:53:25 +000063 <version>1.9.13-SNAPSHOT</version>
Carsten Ziegeler9a8a3d62012-08-13 06:10:37 +000064 <scope>compile</scope>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>org.apache.felix.scr.ds-annotations</artifactId>
Carsten Ziegeler5a8a3bf2015-04-23 15:53:25 +000069 <version>1.2.9-SNAPSHOT</version>
Carsten Ziegeler9a8a3d62012-08-13 06:10:37 +000070 <scope>compile</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.ow2.asm</groupId>
74 <artifactId>asm-all</artifactId>
Carsten Ziegelerfb3aa192014-05-02 07:55:11 +000075 <version>5.0.2</version>
Carsten Ziegeler9a8a3d62012-08-13 06:10:37 +000076 <scope>compile</scope>
77 </dependency>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000078 </dependencies>
79
80 <build>
81 <plugins>
82 <!-- unpack qdox, asm and annotations into bundle package -->
83 <plugin>
84 <artifactId>maven-dependency-plugin</artifactId>
85 <executions>
86 <execution>
87 <goals>
88 <goal>unpack-dependencies</goal>
89 </goals>
90 <configuration>
91 <includeArtifactIds>
Carsten Ziegeler9a8a3d62012-08-13 06:10:37 +000092 org.apache.felix.scr.generator,asm-all,org.apache.felix.scr.annotations,org.apache.felix.scr.ds-annotations
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000093 </includeArtifactIds>
94 <outputDirectory>
95 ${project.build.outputDirectory}
96 </outputDirectory>
Felix Meschberger21abde52010-11-01 21:40:38 +000097 <excludes>
Carsten Ziegeler9a8a3d62012-08-13 06:10:37 +000098 **/MANIFEST.MF
Felix Meschberger21abde52010-11-01 21:40:38 +000099 </excludes>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +0000100 </configuration>
101 </execution>
102 </executions>
103 </plugin>
Felix Meschberger8a97e672010-10-21 11:01:04 +0000104 <!-- JDK 1.5 needed for annotation support -->
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-compiler-plugin</artifactId>
108 <configuration>
109 <source>1.5</source>
110 <target>1.5</target>
111 </configuration>
112 </plugin>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +0000113 </plugins>
114 </build>
115</project>