Carsten Ziegeler | f63da64 | 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> |
Carsten Ziegeler | e5da161 | 2009-05-14 20:05:45 +0000 | [diff] [blame] | 23 | <artifactId>felix-parent</artifactId> |
Carsten Ziegeler | f63da64 | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 24 | <groupId>org.apache.felix</groupId> |
Carsten Ziegeler | e5da161 | 2009-05-14 20:05:45 +0000 | [diff] [blame] | 25 | <version>1.2.0</version> |
Carsten Ziegeler | 3c329e9 | 2009-03-31 17:18:17 +0000 | [diff] [blame] | 26 | <relativePath>../pom/pom.xml</relativePath> |
Carsten Ziegeler | f63da64 | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <groupId>org.apache.felix</groupId> |
Carsten Ziegeler | 05851d4 | 2009-04-18 18:31:43 +0000 | [diff] [blame] | 30 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
Carsten Ziegeler | f63da64 | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 31 | |
Carsten Ziegeler | 28632ae | 2010-04-27 10:23:11 +0000 | [diff] [blame] | 32 | <version>1.3.1-SNAPSHOT</version> |
Carsten Ziegeler | f63da64 | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 33 | <packaging>jar</packaging> |
| 34 | |
Carsten Ziegeler | a0c90c2 | 2009-09-15 07:07:35 +0000 | [diff] [blame] | 35 | <name>Annotations for SCR</name> |
Carsten Ziegeler | f63da64 | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 36 | <description> |
Carsten Ziegeler | a0c90c2 | 2009-09-15 07:07:35 +0000 | [diff] [blame] | 37 | Annotations for generating OSGi service descriptors. |
Carsten Ziegeler | f63da64 | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 38 | </description> |
| 39 | |
| 40 | <scm> |
Carsten Ziegeler | 28632ae | 2010-04-27 10:23:11 +0000 | [diff] [blame] | 41 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scr-annotations</connection> |
| 42 | <developerConnection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scr-annotations</developerConnection> |
| 43 | <url>http://svn.apache.org/repos/asf/felix/scr-annotations</url> |
Carsten Ziegeler | f63da64 | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 44 | </scm> |
| 45 | |
Felix Meschberger | 58593d8 | 2010-10-21 11:01:04 +0000 | [diff] [blame] | 46 | <dependencies> |
| 47 | <dependency> |
| 48 | <groupId>org.apache.felix</groupId> |
| 49 | <artifactId>org.apache.felix.scr.generator</artifactId> |
| 50 | <version>0.0.1-SNAPSHOT</version> |
Felix Meschberger | 53dd92d | 2010-10-21 11:04:23 +0000 | [diff] [blame] | 51 | <scope>provided</scope> |
Felix Meschberger | 58593d8 | 2010-10-21 11:01:04 +0000 | [diff] [blame] | 52 | </dependency> |
| 53 | </dependencies> |
| 54 | |
Carsten Ziegeler | f63da64 | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 55 | <build> |
Felix Meschberger | 665e8fd | 2010-10-21 12:29:22 +0000 | [diff] [blame] | 56 | <resources> |
| 57 | <resource> |
| 58 | <directory>${basedir}/src/main/resources</directory> |
| 59 | </resource> |
| 60 | <resource> |
| 61 | <targetPath>META-INF</targetPath> |
| 62 | <directory>${basedir}</directory> |
| 63 | <includes> |
| 64 | <include>LICENSE</include> |
| 65 | <include>NOTICE</include> |
| 66 | <include>DEPENDENCIES</include> |
| 67 | </includes> |
| 68 | </resource> |
| 69 | </resources> |
Carsten Ziegeler | f63da64 | 2009-03-31 17:12:40 +0000 | [diff] [blame] | 70 | <plugins> |
| 71 | |
| 72 | <!-- JDK 1.5 needed for annotation support --> |
| 73 | <plugin> |
| 74 | <groupId>org.apache.maven.plugins</groupId> |
| 75 | <artifactId>maven-compiler-plugin</artifactId> |
| 76 | <configuration> |
| 77 | <source>1.5</source> |
| 78 | <target>1.5</target> |
| 79 | </configuration> |
| 80 | </plugin> |
| 81 | |
| 82 | </plugins> |
| 83 | </build> |
| 84 | |
| 85 | </project> |