blob: 56aef5784c542f214e8526ed761143c3043d628d [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>
23 <artifactId>felix</artifactId>
24 <groupId>org.apache.felix</groupId>
Carsten Ziegelerb61fe0e2008-01-03 09:24:12 +000025 <version>1.0.1</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000026 </parent>
27
28 <groupId>org.apache.felix</groupId>
29 <artifactId>maven-scr-plugin</artifactId>
30
Carsten Ziegeler80fc8e02007-12-20 13:15:51 +000031 <version>1.0.2-SNAPSHOT</version>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000032 <packaging>maven-plugin</packaging>
33
Carsten Ziegeler1bcecbb2007-08-27 14:40:26 +000034 <name>Maven SCR Plugin</name>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000035 <description>
36 Maven plugin for generating OSGi service descriptors based on annotations.
37 </description>
38
39 <scm>
Carsten Ziegeler80fc8e02007-12-20 13:15:51 +000040 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin</connection>
41 <developerConnection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/scrplugin</developerConnection>
42 <url>http://svn.apache.org/repos/asf/felix/scrplugin</url>
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000043 </scm>
44
45 <dependencies>
46 <dependency>
47 <groupId>org.osgi</groupId>
48 <artifactId>osgi_R4_core</artifactId>
49 <version>1.0</version>
50 <scope>compile</scope>
51 </dependency>
52 <dependency>
53 <groupId>org.osgi</groupId>
54 <artifactId>osgi_R4_compendium</artifactId>
55 <version>1.0</version>
56 <scope>compile</scope>
57 </dependency>
Carsten Ziegeler8ce086c2007-09-03 10:49:49 +000058
59 <dependency>
60 <groupId>asm</groupId>
61 <artifactId>asm-all</artifactId>
62 <version>3.0</version>
63 </dependency>
64
Carsten Ziegeler4ccaaeb2007-08-20 07:20:03 +000065 <dependency>
66 <groupId>org.apache.commons</groupId>
67 <artifactId>commons-io</artifactId>
68 <version>1.3.2</version>
69 </dependency>
70
71 <dependency>
72 <groupId>org.apache.maven</groupId>
73 <artifactId>maven-plugin-api</artifactId>
74 <version>2.0.7</version>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.maven</groupId>
78 <artifactId>maven-archiver</artifactId>
79 <version>2.2</version>
80 </dependency>
81
82 <dependency>
83 <groupId>com.thoughtworks.qdox</groupId>
84 <artifactId>qdox</artifactId>
85 <version>1.6.3</version>
86 </dependency>
87 </dependencies>
Carsten Ziegelerefccf872007-08-22 09:14:15 +000088 <build>
89 <pluginManagement>
90 <plugins>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-release-plugin</artifactId>
94 <version>2.0-beta-6</version>
95 </plugin>
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-gpg-plugin</artifactId>
Carsten Ziegelerd7e1ab82007-12-14 16:59:51 +000099 <version>1.0-alpha-4</version>
Carsten Ziegelerefccf872007-08-22 09:14:15 +0000100 </plugin>
101 <plugin>
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-assembly-plugin</artifactId>
104 <version>2.2-beta-1</version>
105 </plugin>
106 </plugins>
107 </pluginManagement>
108 <plugins>
109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-release-plugin</artifactId>
112 <configuration>
113 <tagBase>https://svn.apache.org/repos/asf/felix/releases</tagBase>
114 <useReleaseProfile>false</useReleaseProfile>
115 <goals>deploy</goals>
116 </configuration>
117 </plugin>
118 </plugins>
119 </build>
120
121 <profiles>
122 <profile>
123 <id>release</id>
124 <build>
125 <plugins>
126 <plugin>
127 <groupId>org.apache.maven.plugins</groupId>
128 <artifactId>maven-gpg-plugin</artifactId>
129 <executions>
130 <execution>
131 <id>sign-artifacts</id>
132 <phase>verify</phase>
133 <goals>
134 <goal>sign</goal>
135 </goals>
136 </execution>
137 </executions>
138 </plugin>
139 <plugin>
140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-assembly-plugin</artifactId>
142 <configuration>
143 <descriptorRefs>
144 <descriptorRef>bin</descriptorRef>
145 <descriptorRef>project</descriptorRef>
146 </descriptorRefs>
147 </configuration>
148 <executions>
149 <execution>
150 <id>make-assembly</id>
151 <phase>package</phase>
152 <goals>
153 <goal>attached</goal>
154 </goals>
155 </execution>
156 </executions>
157 </plugin>
158 </plugins>
159 </build>
160 </profile>
161 </profiles>
Carsten Ziegeler80ed0372007-08-22 09:16:40 +0000162</project>