blob: 08c9828e6a39add2cf94ce97d78ca6677928c119 [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 Ziegeler4ccaaeb2007-08-20 07:20:03 +000023 <groupId>org.apache.felix</groupId>
Carsten Ziegeler9a8a3d62012-08-13 06:10:37 +000024 <artifactId>felix-parent</artifactId>
25 <version>2.1</version>
26 <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 Ziegeler20e132f2014-08-22 06:31:16 +000032 <version>1.20.1-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 Ziegeler20e132f2014-08-22 06:31:16 +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 Ziegelerd3467702015-02-18 15:04:15 +000060 <version>1.12.1-SNAPSHOT</version>
Carsten Ziegelerc49137d2012-06-13 12:06:53 +000061 <scope>compile</scope>
62 </dependency>
Carsten Ziegeler36e76cb2012-12-04 09:35:25 +000063 <dependency>
64 <groupId>org.sonatype.plexus</groupId>
65 <artifactId>plexus-build-api</artifactId>
66 <version>0.0.7</version>
67 </dependency>
Felix Meschberger00b9b9d2010-10-21 10:55:34 +000068 </dependencies>
Felix Meschberger8a97e672010-10-21 11:01:04 +000069
70 <build>
71 <plugins>
72 <!-- 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>
Carsten Ziegelera3cd7872012-11-28 15:44:22 +000081 <plugin>
82 <artifactId>maven-invoker-plugin</artifactId>
83 <version>1.7</version>
84 <configuration>
85 <projectsDirectory>src/it</projectsDirectory>
86 <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
87 <pomIncludes>
88 <pomInclude>*/pom.xml</pomInclude>
89 </pomIncludes>
90 <!-- http://maven.apache.org/plugins/maven-invoker-plugin/examples/fast-use.html -->
91 <settingsFile>src/it/settings.xml</settingsFile>
92 <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
93 </configuration>
94 <executions>
95 <execution>
96 <id>integration-test</id>
97 <goals>
98 <goal>install</goal>
99 <goal>run</goal>
100 </goals>
101 </execution>
102 </executions>
103 </plugin>
Felix Meschberger8a97e672010-10-21 11:01:04 +0000104 </plugins>
105 </build>
Stuart McCulloch617bb532008-01-28 08:51:49 +0000106</project>