Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 23 | <groupId>org.apache.felix</groupId> |
Carsten Ziegeler | 9a8a3d6 | 2012-08-13 06:10:37 +0000 | [diff] [blame] | 24 | <artifactId>felix-parent</artifactId> |
Carsten Ziegeler | 98a696f | 2015-07-27 06:13:49 +0000 | [diff] [blame] | 25 | <version>3</version> |
Carsten Ziegeler | 9a8a3d6 | 2012-08-13 06:10:37 +0000 | [diff] [blame] | 26 | <relativePath>../../pom/pom.xml</relativePath> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <groupId>org.apache.felix</groupId> |
| 30 | <artifactId>org.apache.felix.scr.ant</artifactId> |
| 31 | |
Carsten Ziegeler | c558039 | 2015-04-23 15:46:13 +0000 | [diff] [blame] | 32 | <version>1.14.1-SNAPSHOT</version> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 33 | <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 Ziegeler | c558039 | 2015-04-23 15:46:13 +0000 | [diff] [blame] | 42 | <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 Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 45 | </scm> |
| 46 | |
Carsten Ziegeler | 98a696f | 2015-07-27 06:13:49 +0000 | [diff] [blame] | 47 | <properties> |
| 48 | <felix.java.version>6</felix.java.version> |
| 49 | </properties> |
| 50 | |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 51 | <dependencies> |
| 52 | <dependency> |
| 53 | <groupId>org.apache.ant</groupId> |
| 54 | <artifactId>ant</artifactId> |
| 55 | <version>1.7.0</version> |
| 56 | <scope>provided</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.apache.felix</groupId> |
| 60 | <artifactId>org.apache.felix.scr.generator</artifactId> |
Carsten Ziegeler | 5a8a3bf | 2015-04-23 15:53:25 +0000 | [diff] [blame] | 61 | <version>1.13.1-SNAPSHOT</version> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 62 | <scope>compile</scope> |
| 63 | </dependency> |
Carsten Ziegeler | 9a8a3d6 | 2012-08-13 06:10:37 +0000 | [diff] [blame] | 64 | <dependency> |
| 65 | <groupId>org.apache.felix</groupId> |
| 66 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
Carsten Ziegeler | 5a8a3bf | 2015-04-23 15:53:25 +0000 | [diff] [blame] | 67 | <version>1.9.13-SNAPSHOT</version> |
Carsten Ziegeler | 9a8a3d6 | 2012-08-13 06:10:37 +0000 | [diff] [blame] | 68 | <scope>compile</scope> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.apache.felix</groupId> |
| 72 | <artifactId>org.apache.felix.scr.ds-annotations</artifactId> |
Carsten Ziegeler | 5a8a3bf | 2015-04-23 15:53:25 +0000 | [diff] [blame] | 73 | <version>1.2.9-SNAPSHOT</version> |
Carsten Ziegeler | 9a8a3d6 | 2012-08-13 06:10:37 +0000 | [diff] [blame] | 74 | <scope>compile</scope> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.ow2.asm</groupId> |
| 78 | <artifactId>asm-all</artifactId> |
Carsten Ziegeler | fb3aa19 | 2014-05-02 07:55:11 +0000 | [diff] [blame] | 79 | <version>5.0.2</version> |
Carsten Ziegeler | 9a8a3d6 | 2012-08-13 06:10:37 +0000 | [diff] [blame] | 80 | <scope>compile</scope> |
| 81 | </dependency> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 82 | </dependencies> |
| 83 | |
| 84 | <build> |
| 85 | <plugins> |
| 86 | <!-- unpack qdox, asm and annotations into bundle package --> |
| 87 | <plugin> |
| 88 | <artifactId>maven-dependency-plugin</artifactId> |
| 89 | <executions> |
| 90 | <execution> |
| 91 | <goals> |
| 92 | <goal>unpack-dependencies</goal> |
| 93 | </goals> |
| 94 | <configuration> |
| 95 | <includeArtifactIds> |
Carsten Ziegeler | 9a8a3d6 | 2012-08-13 06:10:37 +0000 | [diff] [blame] | 96 | org.apache.felix.scr.generator,asm-all,org.apache.felix.scr.annotations,org.apache.felix.scr.ds-annotations |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 97 | </includeArtifactIds> |
| 98 | <outputDirectory> |
| 99 | ${project.build.outputDirectory} |
| 100 | </outputDirectory> |
Felix Meschberger | 21abde5 | 2010-11-01 21:40:38 +0000 | [diff] [blame] | 101 | <excludes> |
Carsten Ziegeler | 9a8a3d6 | 2012-08-13 06:10:37 +0000 | [diff] [blame] | 102 | **/MANIFEST.MF |
Felix Meschberger | 21abde5 | 2010-11-01 21:40:38 +0000 | [diff] [blame] | 103 | </excludes> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 104 | </configuration> |
| 105 | </execution> |
| 106 | </executions> |
| 107 | </plugin> |
Carsten Ziegeler | 98a696f | 2015-07-27 06:13:49 +0000 | [diff] [blame] | 108 | </plugins> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 109 | </build> |
| 110 | </project> |