Carsten Ziegeler | 98e992a | 2012-06-13 15:50:00 +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 | 98e992a | 2012-06-13 15:50:00 +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> |
| 25 | <version>2.1</version> |
| 26 | <relativePath>../../pom/pom.xml</relativePath> |
Carsten Ziegeler | 98e992a | 2012-06-13 15:50:00 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <groupId>org.apache.felix</groupId> |
| 30 | <artifactId>org.apache.felix.scr.ds-annotations</artifactId> |
| 31 | |
| 32 | <!-- We use the same major version as the spec. --> |
Carsten Ziegeler | fbcad5b | 2014-07-28 12:51:42 +0000 | [diff] [blame] | 33 | <version>1.2.9-SNAPSHOT</version> |
Carsten Ziegeler | 98e992a | 2012-06-13 15:50:00 +0000 | [diff] [blame] | 34 | <packaging>jar</packaging> |
| 35 | |
| 36 | <name>Annotations for DS</name> |
| 37 | <description> |
| 38 | Annotations for generating OSGi service descriptors. |
| 39 | </description> |
| 40 | |
| 41 | <scm> |
Carsten Ziegeler | fbcad5b | 2014-07-28 12:51:42 +0000 | [diff] [blame] | 42 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin/ds-annotations</connection> |
| 43 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scrplugin/ds-annotations</developerConnection> |
| 44 | <url>http://svn.apache.org/repos/asf/felix/scrplugin/ds-annotations</url> |
Carsten Ziegeler | 98e992a | 2012-06-13 15:50:00 +0000 | [diff] [blame] | 45 | </scm> |
| 46 | |
| 47 | <dependencies> |
| 48 | <dependency> |
| 49 | <groupId>org.apache.felix</groupId> |
| 50 | <artifactId>org.apache.felix.scr.generator</artifactId> |
Carsten Ziegeler | 7e88c7e | 2014-07-28 13:20:26 +0000 | [diff] [blame] | 51 | <version>1.12.1-SNAPSHOT</version> |
Carsten Ziegeler | 98e992a | 2012-06-13 15:50:00 +0000 | [diff] [blame] | 52 | <scope>provided</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.osgi</groupId> |
| 56 | <artifactId>org.osgi.compendium</artifactId> |
| 57 | <version>4.3.0</version> |
| 58 | <scope>provided</scope> |
| 59 | </dependency> |
| 60 | </dependencies> |
| 61 | |
| 62 | <build> |
| 63 | <resources> |
| 64 | <resource> |
| 65 | <directory>${basedir}/src/main/resources</directory> |
| 66 | </resource> |
| 67 | <resource> |
| 68 | <targetPath>META-INF</targetPath> |
| 69 | <directory>${basedir}</directory> |
| 70 | <includes> |
| 71 | <include>LICENSE</include> |
| 72 | <include>NOTICE</include> |
| 73 | <include>DEPENDENCIES</include> |
| 74 | </includes> |
| 75 | </resource> |
| 76 | </resources> |
| 77 | <plugins> |
| 78 | |
| 79 | <!-- JDK 1.5 needed for annotation support --> |
| 80 | <plugin> |
| 81 | <groupId>org.apache.maven.plugins</groupId> |
| 82 | <artifactId>maven-compiler-plugin</artifactId> |
| 83 | <configuration> |
| 84 | <source>1.5</source> |
| 85 | <target>1.5</target> |
| 86 | </configuration> |
| 87 | </plugin> |
| 88 | |
| 89 | </plugins> |
| 90 | </build> |
| 91 | |
| 92 | </project> |