blob: 89baba89109b7d6cfa48f067d0330db0bef2b0f7 [file] [log] [blame]
Carsten Ziegeler697b6bb2007-08-21 14:16:48 +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 Ziegelerdb730e42007-08-21 14:12:49 +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 Ziegeler7baa52a2007-07-24 09:31:07 +000020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
24 <version>1.0.0</version>
25 <relativePath>../../pom</relativePath>
26 </parent>
27 <packaging>pom</packaging>
28 <name>Apache Felix Commons: Build</name>
29 <groupId>org.apache.felix.commons</groupId>
Carsten Ziegeleref09a2c2007-07-24 09:39:40 +000030 <artifactId>commons-build</artifactId>
Carsten Ziegeler13f65152007-08-21 14:13:05 +000031 <version>1.0.1-SNAPSHOT</version>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000032 <description>
33 These subprojects wrap common third-party jars as OSGi bundles.
34 </description>
35 <scm>
Carsten Ziegeler13f65152007-08-21 14:13:05 +000036 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/pom</connection>
37 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/pom</developerConnection>
38 <url>http://svn.apache.org/viewcvs/felix/trunk/commons/pom</url>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000039 </scm>
40
41 <build>
42 <pluginManagement>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-release-plugin</artifactId>
47 <version>2.0-beta-6</version>
48 </plugin>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-gpg-plugin</artifactId>
52 <version>1.0-alpha-3</version>
53 </plugin>
Carsten Ziegelerbbf9a672007-07-26 07:46:42 +000054 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-assembly-plugin</artifactId>
57 <version>2.2-beta-1</version>
58 </plugin>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000059 </plugins>
60 </pluginManagement>
Carsten Ziegelerf47ee3f2007-08-21 14:12:33 +000061 <plugins>
62 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-release-plugin</artifactId>
65 <configuration>
66 <tagBase>https://svn.apache.org/repos/asf/felix/releases</tagBase>
67 <useReleaseProfile>false</useReleaseProfile>
68 <goals>deploy</goals>
69 </configuration>
70 </plugin>
71 </plugins>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000072 </build>
73
74 <profiles>
75 <profile>
76 <id>release</id>
77 <build>
78 <plugins>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000081 <artifactId>maven-gpg-plugin</artifactId>
82 <executions>
83 <execution>
84 <id>sign-artifacts</id>
85 <phase>verify</phase>
86 <goals>
87 <goal>sign</goal>
88 </goals>
89 </execution>
90 </executions>
91 </plugin>
Carsten Ziegelerbbf9a672007-07-26 07:46:42 +000092 <plugin>
93 <groupId>org.apache.maven.plugins</groupId>
94 <artifactId>maven-assembly-plugin</artifactId>
95 <configuration>
96 <descriptorRefs>
97 <descriptorRef>bin</descriptorRef>
98 <descriptorRef>project</descriptorRef>
99 </descriptorRefs>
100 </configuration>
101 <executions>
102 <execution>
103 <id>make-assembly</id>
104 <phase>package</phase>
105 <goals>
106 <goal>attached</goal>
107 </goals>
108 </execution>
109 </executions>
110 </plugin>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +0000111 </plugins>
112 </build>
113 </profile>
114 </profiles>
Carsten Ziegeler9944b5d2007-08-21 13:45:04 +0000115</project>