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 | 83081ea | 2015-07-27 06:10:20 +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.generator</artifactId> |
| 31 | |
Carsten Ziegeler | f5f5c17 | 2015-04-23 15:32:38 +0000 | [diff] [blame] | 32 | <version>1.13.1-SNAPSHOT</version> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 33 | <packaging>jar</packaging> |
| 34 | |
| 35 | <name>Descriptor Generator Implementation</name> |
| 36 | <description> |
| 37 | Provides the implementation to generate Declarative Services and Metatype |
Carsten Ziegeler | 8544b1c | 2013-09-17 06:50:30 +0000 | [diff] [blame] | 38 | Service descriptors from Java 5 Annotations. |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 39 | </description> |
| 40 | |
| 41 | <scm> |
Carsten Ziegeler | f5f5c17 | 2015-04-23 15:32:38 +0000 | [diff] [blame] | 42 | <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 Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 45 | </scm> |
| 46 | |
Carsten Ziegeler | 83081ea | 2015-07-27 06:10:20 +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> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 52 | <!-- bind/unbind method generation --> |
| 53 | <dependency> |
Carsten Ziegeler | 99a93d8 | 2012-07-05 09:02:30 +0000 | [diff] [blame] | 54 | <groupId>org.ow2.asm</groupId> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 55 | <artifactId>asm-all</artifactId> |
Carsten Ziegeler | fb3aa19 | 2014-05-02 07:55:11 +0000 | [diff] [blame] | 56 | <version>5.0.2</version> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 57 | <scope>compile</scope> |
| 58 | </dependency> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 59 | <dependency> |
Carsten Ziegeler | 55c96d3 | 2012-06-13 12:03:35 +0000 | [diff] [blame] | 60 | <groupId>org.osgi</groupId> |
| 61 | <artifactId>org.osgi.core</artifactId> |
| 62 | <version>4.2.0</version> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.osgi</groupId> |
| 66 | <artifactId>org.osgi.compendium</artifactId> |
Carsten Ziegeler | 55c96d3 | 2012-06-13 12:03:35 +0000 | [diff] [blame] | 67 | <version>4.2.0</version> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 68 | </dependency> |
Carsten Ziegeler | e58ddff | 2013-08-14 05:52:12 +0000 | [diff] [blame] | 69 | |
| 70 | |
| 71 | <dependency> |
| 72 | <groupId>junit</groupId> |
| 73 | <artifactId>junit</artifactId> |
| 74 | <version>4.8.1</version> |
| 75 | <scope>test</scope> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>org.easymock</groupId> |
| 80 | <artifactId>easymock</artifactId> |
| 81 | <version>3.2</version> |
| 82 | <scope>test</scope> |
| 83 | </dependency> |
| 84 | |
| 85 | <dependency> |
| 86 | <groupId>commons-lang</groupId> |
| 87 | <artifactId>commons-lang</artifactId> |
| 88 | <version>2.6</version> |
| 89 | <scope>test</scope> |
| 90 | </dependency> |
| 91 | |
| 92 | <dependency> |
| 93 | <groupId>commons-io</groupId> |
| 94 | <artifactId>commons-io</artifactId> |
| 95 | <version>2.4</version> |
| 96 | <scope>test</scope> |
| 97 | </dependency> |
| 98 | |
| 99 | <dependency> |
| 100 | <groupId>org.apache.felix</groupId> |
| 101 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 102 | <version>1.9.6</version> |
| 103 | <scope>test</scope> |
| 104 | </dependency> |
| 105 | |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 106 | </dependencies> |
| 107 | |
| 108 | <build> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 109 | <plugins> |
| 110 | <!-- JDK 1.5 needed for annotation support --> |
| 111 | <plugin> |
| 112 | <groupId>org.apache.maven.plugins</groupId> |
| 113 | <artifactId>maven-compiler-plugin</artifactId> |
| 114 | <configuration> |
| 115 | <source>1.5</source> |
| 116 | <target>1.5</target> |
| 117 | </configuration> |
| 118 | </plugin> |
| 119 | </plugins> |
| 120 | </build> |
| 121 | </project> |