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> |
| 23 | <artifactId>felix-parent</artifactId> |
| 24 | <groupId>org.apache.felix</groupId> |
| 25 | <version>1.2.0</version> |
| 26 | <relativePath>../pom/pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <groupId>org.apache.felix</groupId> |
| 30 | <artifactId>org.apache.felix.scr.generator</artifactId> |
| 31 | |
Carsten Ziegeler | 6e6ddd5 | 2011-03-09 13:29:22 +0000 | [diff] [blame] | 32 | <version>1.1.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 |
| 38 | Service descriptors from Java 5 Annotations and/or JavaDoc tags. |
| 39 | </description> |
| 40 | |
| 41 | <scm> |
Carsten Ziegeler | 6e6ddd5 | 2011-03-09 13:29:22 +0000 | [diff] [blame] | 42 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin/generator</connection> |
| 43 | <developerConnection>scm:svn:http://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 | |
| 47 | <dependencies> |
| 48 | <!-- JavaDoc Tags --> |
| 49 | <dependency> |
| 50 | <groupId>com.thoughtworks.qdox</groupId> |
| 51 | <artifactId>qdox</artifactId> |
| 52 | <version>1.12</version> |
| 53 | <scope>compile</scope> |
| 54 | </dependency> |
| 55 | |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 56 | <!-- bind/unbind method generation --> |
| 57 | <dependency> |
| 58 | <groupId>asm</groupId> |
| 59 | <artifactId>asm-all</artifactId> |
| 60 | <version>3.1</version> |
| 61 | <scope>compile</scope> |
| 62 | </dependency> |
| 63 | |
| 64 | <!-- OSGi APIs (some constant references used only) --> |
| 65 | <dependency> |
| 66 | <groupId>org.osgi</groupId> |
| 67 | <artifactId>org.osgi.core</artifactId> |
| 68 | <version>4.0.0</version> |
| 69 | <scope>provided</scope> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.osgi</groupId> |
| 73 | <artifactId>org.osgi.compendium</artifactId> |
| 74 | <version>4.0.0</version> |
| 75 | <scope>provided</scope> |
| 76 | </dependency> |
| 77 | </dependencies> |
| 78 | |
| 79 | <build> |
Felix Meschberger | 502fe7e | 2010-10-21 12:29:22 +0000 | [diff] [blame] | 80 | <resources> |
| 81 | <resource> |
| 82 | <directory>${basedir}/src/main/resources</directory> |
| 83 | </resource> |
| 84 | <resource> |
| 85 | <targetPath>META-INF</targetPath> |
| 86 | <directory>${basedir}</directory> |
| 87 | <includes> |
| 88 | <include>LICENSE</include> |
| 89 | <include>NOTICE</include> |
| 90 | <include>DEPENDENCIES</include> |
| 91 | </includes> |
| 92 | </resource> |
| 93 | </resources> |
Felix Meschberger | 00b9b9d | 2010-10-21 10:55:34 +0000 | [diff] [blame] | 94 | <plugins> |
| 95 | <!-- JDK 1.5 needed for annotation support --> |
| 96 | <plugin> |
| 97 | <groupId>org.apache.maven.plugins</groupId> |
| 98 | <artifactId>maven-compiler-plugin</artifactId> |
| 99 | <configuration> |
| 100 | <source>1.5</source> |
| 101 | <target>1.5</target> |
| 102 | </configuration> |
| 103 | </plugin> |
| 104 | </plugins> |
| 105 | </build> |
| 106 | </project> |