blob: b9a16e07e499897370e59b9d1f2fb7c884de1248 [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>
Carsten Ziegelere5da1612009-05-14 20:05:45 +000023 <artifactId>felix-parent</artifactId>
Felix Meschberger72dffe32010-10-28 09:31:38 +000024 <groupId>org.apache.felix</groupId>
25 <version>1.2.0</version>
26 <relativePath>../pom/pom.xml</relativePath>
27 </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 Ziegeleraead5602011-07-14 16:54:25 +000032 <version>1.6.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 Ziegeleraead5602011-07-14 16:54:25 +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 Ziegelerfa713e72011-07-14 16:49:41 +000050 <version>1.1.2</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 Meschberger665e8fd2010-10-21 12:29:22 +000056 <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>
Felix Meschberger72dffe32010-10-28 09:31:38 +000070 <plugins>
Carsten Ziegelerf63da642009-03-31 17:12:40 +000071
Felix Meschberger72dffe32010-10-28 09:31:38 +000072 <!-- 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>
Carsten Ziegelerf63da642009-03-31 17:12:40 +000083 </build>
Felix Meschberger72dffe32010-10-28 09:31:38 +000084
Carsten Ziegelerf63da642009-03-31 17:12:40 +000085</project>