blob: 30c9ed17f91e1bd93044c84125169af83d81fdd7 [file] [log] [blame]
Carsten Ziegeler500bb6d2007-08-21 14:04:29 +00001<?xml version="1.0" encoding="UTF-8" ?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19-->
20<project xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 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 +000023 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <groupId>org.apache.felix</groupId>
26 <artifactId>felix</artifactId>
27 <version>1.0.0</version>
28 <relativePath>../../pom</relativePath>
29 </parent>
30 <packaging>pom</packaging>
31 <name>Apache Felix Commons: Build</name>
32 <groupId>org.apache.felix.commons</groupId>
Carsten Ziegeleref09a2c2007-07-24 09:39:40 +000033 <artifactId>commons-build</artifactId>
Carsten Ziegeler500bb6d2007-08-21 14:04:29 +000034 <version>1.0.0-SNAPSHOT</version>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000035 <description>
36 These subprojects wrap common third-party jars as OSGi bundles.
37 </description>
38 <scm>
Carsten Ziegeler500bb6d2007-08-21 14:04:29 +000039 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/pom</connection>
40 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/pom</developerConnection>
41 <url>http://svn.apache.org/viewcvs/felix/trunk/commons/pom</url>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000042 </scm>
43
44 <build>
45 <pluginManagement>
46 <plugins>
47 <plugin>
48 <groupId>org.apache.maven.plugins</groupId>
49 <artifactId>maven-release-plugin</artifactId>
50 <version>2.0-beta-6</version>
51 </plugin>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-gpg-plugin</artifactId>
55 <version>1.0-alpha-3</version>
56 </plugin>
Carsten Ziegelerbbf9a672007-07-26 07:46:42 +000057 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-assembly-plugin</artifactId>
60 <version>2.2-beta-1</version>
61 </plugin>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000062 </plugins>
63 </pluginManagement>
Carsten Ziegelerf47ee3f2007-08-21 14:12:33 +000064 <plugins>
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-release-plugin</artifactId>
68 <configuration>
69 <tagBase>https://svn.apache.org/repos/asf/felix/releases</tagBase>
70 <useReleaseProfile>false</useReleaseProfile>
71 <goals>deploy</goals>
72 </configuration>
73 </plugin>
74 </plugins>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000075 </build>
76
77 <profiles>
78 <profile>
79 <id>release</id>
80 <build>
81 <plugins>
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000084 <artifactId>maven-gpg-plugin</artifactId>
85 <executions>
86 <execution>
87 <id>sign-artifacts</id>
88 <phase>verify</phase>
89 <goals>
90 <goal>sign</goal>
91 </goals>
92 </execution>
93 </executions>
94 </plugin>
Carsten Ziegelerbbf9a672007-07-26 07:46:42 +000095 <plugin>
96 <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-assembly-plugin</artifactId>
98 <configuration>
99 <descriptorRefs>
100 <descriptorRef>bin</descriptorRef>
101 <descriptorRef>project</descriptorRef>
102 </descriptorRefs>
103 </configuration>
104 <executions>
105 <execution>
106 <id>make-assembly</id>
107 <phase>package</phase>
108 <goals>
109 <goal>attached</goal>
110 </goals>
111 </execution>
112 </executions>
113 </plugin>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +0000114 </plugins>
115 </build>
116 </profile>
117 </profiles>
Carsten Ziegeler9944b5d2007-08-21 13:45:04 +0000118</project>