blob: fd958ad120988e2371cadc6534eefd4a14a23670 [file] [log] [blame]
Carsten Ziegelerdb730e42007-08-21 14:12:49 +00001<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 +00002 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
6 <version>1.0.0</version>
7 <relativePath>../../pom</relativePath>
8 </parent>
9 <packaging>pom</packaging>
10 <name>Apache Felix Commons: Build</name>
11 <groupId>org.apache.felix.commons</groupId>
Carsten Ziegeleref09a2c2007-07-24 09:39:40 +000012 <artifactId>commons-build</artifactId>
Carsten Ziegeler13f65152007-08-21 14:13:05 +000013 <version>1.0.1-SNAPSHOT</version>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000014 <description>
15 These subprojects wrap common third-party jars as OSGi bundles.
16 </description>
17 <scm>
Carsten Ziegeler13f65152007-08-21 14:13:05 +000018 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/pom</connection>
19 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/pom</developerConnection>
20 <url>http://svn.apache.org/viewcvs/felix/trunk/commons/pom</url>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000021 </scm>
22
23 <build>
24 <pluginManagement>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-release-plugin</artifactId>
29 <version>2.0-beta-6</version>
30 </plugin>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-gpg-plugin</artifactId>
34 <version>1.0-alpha-3</version>
35 </plugin>
Carsten Ziegelerbbf9a672007-07-26 07:46:42 +000036 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-assembly-plugin</artifactId>
39 <version>2.2-beta-1</version>
40 </plugin>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000041 </plugins>
42 </pluginManagement>
Carsten Ziegelerf47ee3f2007-08-21 14:12:33 +000043 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-release-plugin</artifactId>
47 <configuration>
48 <tagBase>https://svn.apache.org/repos/asf/felix/releases</tagBase>
49 <useReleaseProfile>false</useReleaseProfile>
50 <goals>deploy</goals>
51 </configuration>
52 </plugin>
53 </plugins>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000054 </build>
55
56 <profiles>
57 <profile>
58 <id>release</id>
59 <build>
60 <plugins>
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000063 <artifactId>maven-gpg-plugin</artifactId>
64 <executions>
65 <execution>
66 <id>sign-artifacts</id>
67 <phase>verify</phase>
68 <goals>
69 <goal>sign</goal>
70 </goals>
71 </execution>
72 </executions>
73 </plugin>
Carsten Ziegelerbbf9a672007-07-26 07:46:42 +000074 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-assembly-plugin</artifactId>
77 <configuration>
78 <descriptorRefs>
79 <descriptorRef>bin</descriptorRef>
80 <descriptorRef>project</descriptorRef>
81 </descriptorRefs>
82 </configuration>
83 <executions>
84 <execution>
85 <id>make-assembly</id>
86 <phase>package</phase>
87 <goals>
88 <goal>attached</goal>
89 </goals>
90 </execution>
91 </executions>
92 </plugin>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000093 </plugins>
94 </build>
95 </profile>
96 </profiles>
Carsten Ziegeler9944b5d2007-08-21 13:45:04 +000097</project>