blob: 851a00ea878d5ac6a2a38d9e24563b5abb49f6bf [file] [log] [blame]
Carsten Ziegeler38bcce12012-06-13 15:50:00 +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 Ziegeler38bcce12012-06-13 15:50:00 +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>
Carsten Ziegeler38bcce12012-06-13 15:50:00 +000027 </parent>
28
29 <groupId>org.apache.felix</groupId>
30 <artifactId>org.apache.felix.scr.ds-annotations</artifactId>
31
32 <!-- We use the same major version as the spec. -->
Carsten Ziegelere7e8c2c2012-08-15 08:09:51 +000033 <version>1.2.1-SNAPSHOT</version>
Carsten Ziegeler38bcce12012-06-13 15:50:00 +000034 <packaging>jar</packaging>
35
36 <name>Annotations for DS</name>
37 <description>
38 Annotations for generating OSGi service descriptors.
39 </description>
40
41 <scm>
Carsten Ziegelere7e8c2c2012-08-15 08:09:51 +000042 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin/ds-annotations</connection>
43 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scrplugin/ds-annotations</developerConnection>
44 <url>http://svn.apache.org/repos/asf/felix/scrplugin/ds-annotations</url>
Carsten Ziegeler38bcce12012-06-13 15:50:00 +000045 </scm>
46
47 <dependencies>
48 <dependency>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>org.apache.felix.scr.generator</artifactId>
Carsten Ziegelerf3c08a12012-08-15 08:42:18 +000051 <version>1.2.1-SNAPSHOT</version>
Carsten Ziegeler38bcce12012-06-13 15:50:00 +000052 <scope>provided</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.osgi</groupId>
56 <artifactId>org.osgi.compendium</artifactId>
57 <version>4.3.0</version>
58 <scope>provided</scope>
59 </dependency>
60 </dependencies>
61
62 <build>
63 <resources>
64 <resource>
65 <directory>${basedir}/src/main/resources</directory>
66 </resource>
67 <resource>
68 <targetPath>META-INF</targetPath>
69 <directory>${basedir}</directory>
70 <includes>
71 <include>LICENSE</include>
72 <include>NOTICE</include>
73 <include>DEPENDENCIES</include>
74 </includes>
75 </resource>
76 </resources>
77 <plugins>
78
79 <!-- JDK 1.5 needed for annotation support -->
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-compiler-plugin</artifactId>
83 <configuration>
84 <source>1.5</source>
85 <target>1.5</target>
86 </configuration>
87 </plugin>
88
89 </plugins>
90 </build>
91
92</project>