Carsten Ziegeler | 5de92da | 2009-03-31 17:12:40 +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</artifactId> |
| 24 | <groupId>org.apache.felix</groupId> |
| 25 | <version>1.0.4</version> |
Carsten Ziegeler | b5618fe | 2009-03-31 17:18:17 +0000 | [diff] [blame] | 26 | <relativePath>../pom/pom.xml</relativePath> |
Carsten Ziegeler | 5de92da | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <groupId>org.apache.felix</groupId> |
| 30 | <artifactId>maven-scr-plugin-annotations</artifactId> |
| 31 | |
Carsten Ziegeler | b5618fe | 2009-03-31 17:18:17 +0000 | [diff] [blame] | 32 | <version>0.9.0-SNAPSHOT</version> |
Carsten Ziegeler | 5de92da | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 33 | <packaging>jar</packaging> |
| 34 | |
| 35 | <name>Annotations for Maven SCR Plugin</name> |
| 36 | <description> |
| 37 | Annotations for generating OSGi service descriptors with Maven SCR plugin. |
| 38 | </description> |
| 39 | |
| 40 | <scm> |
| 41 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin-annotations</connection> |
| 42 | <developerConnection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin-annotations</developerConnection> |
| 43 | <url>http://svn.apache.org/repos/asf/felix/scrplugin-annotations</url> |
| 44 | </scm> |
| 45 | |
| 46 | <build> |
| 47 | <plugins> |
| 48 | |
| 49 | <!-- JDK 1.5 needed for annotation support --> |
| 50 | <plugin> |
| 51 | <groupId>org.apache.maven.plugins</groupId> |
| 52 | <artifactId>maven-compiler-plugin</artifactId> |
| 53 | <configuration> |
| 54 | <source>1.5</source> |
| 55 | <target>1.5</target> |
| 56 | </configuration> |
| 57 | </plugin> |
| 58 | |
| 59 | </plugins> |
| 60 | </build> |
| 61 | |
| 62 | </project> |