blob: 49fd8617257cd00676cc4dde4b47bc98dc5c3586 [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
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
Carsten Ziegeler9aa4f3b2009-05-14 20:05:45 +000023 <artifactId>felix-parent</artifactId>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000024 <groupId>org.apache.felix</groupId>
Carsten Ziegeler9aa4f3b2009-05-14 20:05:45 +000025 <version>1.2.0</version>
Carsten Ziegelerb5618fe2009-03-31 17:18:17 +000026 <relativePath>../pom/pom.xml</relativePath>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000027 </parent>
28
29 <groupId>org.apache.felix</groupId>
Carsten Ziegelerba751bd2009-04-18 18:31:43 +000030 <artifactId>org.apache.felix.scr.annotations</artifactId>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000031
Carsten Ziegeler78bf8092009-12-15 10:12:33 +000032 <version>1.2.1-SNAPSHOT</version>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000033 <packaging>jar</packaging>
34
Carsten Ziegelere0a55612009-09-15 07:07:35 +000035 <name>Annotations for SCR</name>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000036 <description>
Carsten Ziegelere0a55612009-09-15 07:07:35 +000037 Annotations for generating OSGi service descriptors.
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000038 </description>
39
40 <scm>
Carsten Ziegeler78bf8092009-12-15 10:12:33 +000041 <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 Ziegeler5de92da2009-03-31 17:12:40 +000044 </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>