blob: 4481f908e55c82caaf2de55ea7b11ab63d4f5981 [file] [log] [blame]
Carsten Ziegelerf63da642009-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 Meschberger72dffe32010-10-28 09:31:38 +000021 <modelVersion>4.0.0</modelVersion>
22 <parent>
Felix Meschberger72dffe32010-10-28 09:31:38 +000023 <groupId>org.apache.felix</groupId>
Carsten Ziegelerd55df672012-08-13 06:10:37 +000024 <artifactId>felix-parent</artifactId>
25 <version>2.1</version>
26 <relativePath>../../pom/pom.xml</relativePath>
Felix Meschberger72dffe32010-10-28 09:31:38 +000027 </parent>
28
29 <groupId>org.apache.felix</groupId>
30 <artifactId>org.apache.felix.scr.annotations</artifactId>
Carsten Ziegelerf63da642009-03-31 17:12:40 +000031
Carsten Ziegelerc76863d2012-08-15 08:08:09 +000032 <version>1.7.1-SNAPSHOT</version>
Felix Meschberger72dffe32010-10-28 09:31:38 +000033 <packaging>jar</packaging>
Carsten Ziegelerf63da642009-03-31 17:12:40 +000034
Felix Meschberger72dffe32010-10-28 09:31:38 +000035 <name>Annotations for SCR</name>
36 <description>
37 Annotations for generating OSGi service descriptors.
38 </description>
Carsten Ziegelerf63da642009-03-31 17:12:40 +000039
Felix Meschberger72dffe32010-10-28 09:31:38 +000040 <scm>
Carsten Ziegelerc76863d2012-08-15 08:08:09 +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 Meschberger72dffe32010-10-28 09:31:38 +000044 </scm>
Carsten Ziegelerf63da642009-03-31 17:12:40 +000045
Felix Meschberger58593d82010-10-21 11:01:04 +000046 <dependencies>
47 <dependency>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>org.apache.felix.scr.generator</artifactId>
Carsten Ziegelerf3c08a12012-08-15 08:42:18 +000050 <version>1.2.1-SNAPSHOT</version>
Felix Meschberger53dd92d2010-10-21 11:04:23 +000051 <scope>provided</scope>
Felix Meschberger58593d82010-10-21 11:01:04 +000052 </dependency>
53 </dependencies>
54
Felix Meschberger72dffe32010-10-28 09:31:38 +000055 <build>
Felix Meschberger72dffe32010-10-28 09:31:38 +000056 <plugins>
Carsten Ziegelerf63da642009-03-31 17:12:40 +000057
Felix Meschberger72dffe32010-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 Ziegelerf63da642009-03-31 17:12:40 +000069 </build>
Felix Meschberger72dffe32010-10-28 09:31:38 +000070
Carsten Ziegelerf63da642009-03-31 17:12:40 +000071</project>