Carsten Ziegeler | ca034f4 | 2007-08-24 07:43:23 +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 | --> |
Carsten Ziegeler | 4490ee9 | 2007-08-24 07:39:56 +0000 | [diff] [blame] | 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"> |
Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 20 | |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
Carsten Ziegeler | 9aa4f3b | 2009-05-14 20:05:45 +0000 | [diff] [blame] | 23 | <artifactId>felix-parent</artifactId> |
Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 24 | <groupId>org.apache.felix</groupId> |
Carsten Ziegeler | 9aa4f3b | 2009-05-14 20:05:45 +0000 | [diff] [blame] | 25 | <version>1.2.0</version> |
Carsten Ziegeler | b5618fe | 2009-03-31 17:18:17 +0000 | [diff] [blame] | 26 | <relativePath>../pom/pom.xml</relativePath> |
Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <groupId>org.apache.felix</groupId> |
| 30 | <artifactId>maven-scr-plugin</artifactId> |
| 31 | |
Carsten Ziegeler | 7777952 | 2009-12-15 10:22:35 +0000 | [diff] [blame] | 32 | <version>1.4.3-SNAPSHOT</version> |
Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 33 | <packaging>maven-plugin</packaging> |
| 34 | |
Carsten Ziegeler | 1bcecbb | 2007-08-27 14:40:26 +0000 | [diff] [blame] | 35 | <name>Maven SCR Plugin</name> |
Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 36 | <description> |
| 37 | Maven plugin for generating OSGi service descriptors based on annotations. |
| 38 | </description> |
| 39 | |
| 40 | <scm> |
Carsten Ziegeler | 7777952 | 2009-12-15 10:22:35 +0000 | [diff] [blame] | 41 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin</connection> |
| 42 | <developerConnection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin</developerConnection> |
| 43 | <url>http://svn.apache.org/repos/asf/felix/scrplugin</url> |
Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 44 | </scm> |
| 45 | |
| 46 | <dependencies> |
Felix Meschberger | 684b57f | 2009-10-02 13:54:55 +0000 | [diff] [blame] | 47 | <dependency> |
| 48 | <groupId>org.apache.maven</groupId> |
| 49 | <artifactId>maven-plugin-api</artifactId> |
| 50 | <version>2.0.7</version> |
| 51 | </dependency> |
Carsten Ziegeler | 8109327 | 2009-04-15 13:23:10 +0000 | [diff] [blame] | 52 | |
Felix Meschberger | 684b57f | 2009-10-02 13:54:55 +0000 | [diff] [blame] | 53 | <dependency> |
| 54 | <groupId>org.apache.maven</groupId> |
| 55 | <artifactId>maven-archiver</artifactId> |
| 56 | <version>2.2</version> |
| 57 | </dependency> |
Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 58 | |
Felix Meschberger | 684b57f | 2009-10-02 13:54:55 +0000 | [diff] [blame] | 59 | <!-- JavaDoc Tags --> |
Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>com.thoughtworks.qdox</groupId> |
| 62 | <artifactId>qdox</artifactId> |
Carsten Ziegeler | fd07066 | 2009-05-20 06:28:21 +0000 | [diff] [blame] | 63 | <version>1.9.1</version> |
Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 64 | </dependency> |
Carsten Ziegeler | 829c193 | 2008-02-04 08:34:12 +0000 | [diff] [blame] | 65 | |
Felix Meschberger | 684b57f | 2009-10-02 13:54:55 +0000 | [diff] [blame] | 66 | <!-- SCR Annotations --> |
Carsten Ziegeler | 5de92da | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 67 | <dependency> |
| 68 | <groupId>org.apache.felix</groupId> |
Carsten Ziegeler | ba751bd | 2009-04-18 18:31:43 +0000 | [diff] [blame] | 69 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
Carsten Ziegeler | f1eb32f | 2009-12-29 10:15:19 +0000 | [diff] [blame] | 70 | <version>1.2.0</version> |
Carsten Ziegeler | 5de92da | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 71 | </dependency> |
Felix Meschberger | 684b57f | 2009-10-02 13:54:55 +0000 | [diff] [blame] | 72 | |
| 73 | <!-- Sling Servlet SCR Annotation --> |
| 74 | <dependency> |
| 75 | <groupId>javax.servlet</groupId> |
| 76 | <artifactId>servlet-api</artifactId> |
| 77 | <version>2.4</version> |
| 78 | <scope>compile</scope> |
| 79 | </dependency> |
| 80 | |
| 81 | <!-- bind/unbind method generation --> |
| 82 | <dependency> |
| 83 | <groupId>asm</groupId> |
| 84 | <artifactId>asm-all</artifactId> |
| 85 | <version>3.1</version> |
| 86 | </dependency> |
| 87 | |
| 88 | <!-- OSGi APIs --> |
| 89 | <dependency> |
| 90 | <groupId>org.osgi</groupId> |
| 91 | <artifactId>org.osgi.core</artifactId> |
| 92 | <version>4.0.0</version> |
| 93 | <scope>compile</scope> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>org.osgi</groupId> |
| 97 | <artifactId>org.osgi.compendium</artifactId> |
| 98 | <version>4.0.0</version> |
| 99 | <scope>compile</scope> |
| 100 | </dependency> |
Carsten Ziegeler | 4ccaaeb | 2007-08-20 07:20:03 +0000 | [diff] [blame] | 101 | </dependencies> |
Carsten Ziegeler | 5de92da | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 102 | |
| 103 | <build> |
| 104 | <plugins> |
| 105 | |
| 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 | |
| 116 | </plugins> |
| 117 | </build> |
| 118 | |
Stuart McCulloch | 617bb53 | 2008-01-28 08:51:49 +0000 | [diff] [blame] | 119 | </project> |