blob: 5ba3f386f391078093830faa0ee3db6cc5916a69 [file] [log] [blame]
Carsten Ziegelerca034f42007-08-24 07:43:23 +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-->
Carsten Ziegeler4490ee92007-08-24 07:39:56 +000019<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">
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000020
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
Carsten Ziegeler9aa4f3b2009-05-14 20:05:45 +000023 <artifactId>felix-parent</artifactId>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +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 Ziegeler4ccaaeb2007-08-20 07:20:03 +000027 </parent>
28
29 <groupId>org.apache.felix</groupId>
30 <artifactId>maven-scr-plugin</artifactId>
31
Carsten Ziegelera5759b52011-11-08 23:48:48 +000032 <version>1.7.5-SNAPSHOT</version>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000033 <packaging>maven-plugin</packaging>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000034
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000035 <name>Maven SCR Plugin</name>
36 <description>
37 Maven plugin for generating OSGi service descriptors based on annotations.
38 </description>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000039
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000040 <scm>
Carsten Ziegelera5759b52011-11-08 23:48:48 +000041 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin/maven-scr-plugin</connection>
42 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scrplugin/maven-scr-plugin</developerConnection>
43 <url>http://svn.apache.org/repos/asf/felix/scrplugin/maven-scr-plugin</url>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000044 </scm>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000045
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000046 <dependencies>
Felix Meschberger684b57f2009-10-02 13:54:55 +000047 <dependency>
48 <groupId>org.apache.maven</groupId>
49 <artifactId>maven-plugin-api</artifactId>
50 <version>2.0.7</version>
51 </dependency>
Felix Meschberger684b57f2009-10-02 13:54:55 +000052 <dependency>
53 <groupId>org.apache.maven</groupId>
54 <artifactId>maven-archiver</artifactId>
55 <version>2.2</version>
56 </dependency>
Felix Meschberger01926192010-10-20 21:13:22 +000057 <dependency>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000058 <groupId>org.apache.felix</groupId>
59 <artifactId>org.apache.felix.scr.generator</artifactId>
Carsten Ziegeler000f71c2011-11-08 23:55:35 +000060 <version>1.1.5-SNAPSHOT</version>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000061 <scope>compile</scope>
Felix Meschberger01926192010-10-20 21:13:22 +000062 </dependency>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000063 </dependencies>
Felix Meschberger8a97e672010-10-21 11:01:04 +000064
65 <build>
Felix Meschberger502fe7e2010-10-21 12:29:22 +000066 <resources>
67 <resource>
68 <directory>${basedir}/src/main/resources</directory>
69 </resource>
70 <resource>
71 <targetPath>META-INF</targetPath>
72 <directory>${basedir}</directory>
73 <includes>
74 <include>LICENSE</include>
75 <include>NOTICE</include>
76 <include>DEPENDENCIES</include>
77 </includes>
78 </resource>
79 </resources>
Felix Meschberger8a97e672010-10-21 11:01:04 +000080 <plugins>
81 <!-- JDK 1.5 needed for annotation support -->
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-compiler-plugin</artifactId>
85 <configuration>
86 <source>1.5</source>
87 <target>1.5</target>
88 </configuration>
89 </plugin>
90 </plugins>
91 </build>
Stuart McCulloch617bb532008-01-28 08:51:49 +000092</project>