blob: 0c61bb39d12b3b38c92ee416c6909e11434ef9a7 [file] [log] [blame]
Carsten Ziegeler5de92da2009-03-31 17:12:40 +00001<!--
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
Felix Meschbergerc860a442010-10-28 09:31:38 +000021 <modelVersion>4.0.0</modelVersion>
22 <parent>
Felix Meschbergerc860a442010-10-28 09:31:38 +000023 <groupId>org.apache.felix</groupId>
Carsten Ziegeler9a8a3d62012-08-13 06:10:37 +000024 <artifactId>felix-parent</artifactId>
25 <version>2.1</version>
26 <relativePath>../../pom/pom.xml</relativePath>
Felix Meschbergerc860a442010-10-28 09:31:38 +000027 </parent>
28
29 <groupId>org.apache.felix</groupId>
30 <artifactId>org.apache.felix.scr.annotations</artifactId>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000031
Carsten Ziegeler96d4a4a2015-04-23 15:34:14 +000032 <version>1.9.13-SNAPSHOT</version>
Felix Meschbergerc860a442010-10-28 09:31:38 +000033 <packaging>jar</packaging>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000034
Felix Meschbergerc860a442010-10-28 09:31:38 +000035 <name>Annotations for SCR</name>
36 <description>
37 Annotations for generating OSGi service descriptors.
38 </description>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000039
Felix Meschbergerc860a442010-10-28 09:31:38 +000040 <scm>
Carsten Ziegeler96d4a4a2015-04-23 15:34:14 +000041 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin/annotations</connection>
42 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scrplugin/annotations</developerConnection>
43 <url>http://svn.apache.org/repos/asf/felix/scrplugin/annotations</url>
Felix Meschbergerc860a442010-10-28 09:31:38 +000044 </scm>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000045
Felix Meschberger8a97e672010-10-21 11:01:04 +000046 <dependencies>
47 <dependency>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>org.apache.felix.scr.generator</artifactId>
Carsten Ziegeler41d63d42013-08-02 14:00:08 +000050 <version>1.8.0</version>
Felix Meschbergera617d0b2010-10-21 11:04:23 +000051 <scope>provided</scope>
Felix Meschberger8a97e672010-10-21 11:01:04 +000052 </dependency>
53 </dependencies>
54
Felix Meschbergerc860a442010-10-28 09:31:38 +000055 <build>
Felix Meschbergerc860a442010-10-28 09:31:38 +000056 <plugins>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000057
Felix Meschbergerc860a442010-10-28 09:31:38 +000058 <!-- JDK 1.5 needed for annotation support -->
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-compiler-plugin</artifactId>
62 <configuration>
63 <source>1.5</source>
64 <target>1.5</target>
65 </configuration>
66 </plugin>
67
68 </plugins>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000069 </build>
Felix Meschbergerc860a442010-10-28 09:31:38 +000070
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000071</project>