blob: 902c91cba71b3b7a943d2cce9d0823b95b2f57f2 [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>
Carsten Ziegeler9aa4f3b2009-05-14 20:05:45 +000023 <artifactId>felix-parent</artifactId>
Felix Meschbergerc860a442010-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 Ziegeler5de92da2009-03-31 17:12:40 +000031
Felix Meschbergerc860a442010-10-28 09:31:38 +000032 <version>1.3.1-SNAPSHOT</version>
33 <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>
41 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin/annotations</connection>
42 <developerConnection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin/annotations</developerConnection>
43 <url>http://svn.apache.org/repos/asf/felix/scrplugin/annotations</url>
44 </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>
Felix Meschbergerc88ba572010-11-02 00:32:27 +000050 <version>1.0.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 Meschberger502fe7e2010-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 Meschbergerc860a442010-10-28 09:31:38 +000070 <plugins>
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000071
Felix Meschbergerc860a442010-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 Ziegeler5de92da2009-03-31 17:12:40 +000083 </build>
Felix Meschbergerc860a442010-10-28 09:31:38 +000084
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000085</project>