blob: 232c5eac895ac2dc6d57f143c755737635735c55 [file] [log] [blame]
Carsten Ziegeler9944b5d2007-08-21 13:45:04 +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 Ziegeler9944b5d2007-08-21 13:45:04 +000013 <version>1.0.0</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 Ziegeler9944b5d2007-08-21 13:45:04 +000018 <connection>scm:svn:http://svn.apache.org/repos/felix/tags/commons-build-1.0.0</connection>
19 <developerConnection>scm:svn:https://svn.apache.org/repos/felix/tags/commons-build-1.0.0</developerConnection>
20 <url>http://svn.apache.org/viewcvs/felix/tags/commons-build-1.0.0</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>
43 </build>
44
45 <profiles>
46 <profile>
47 <id>release</id>
48 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-release-plugin</artifactId>
53 <configuration>
54 <tagBase>http://svn.apache.org/repos/felix/releases</tagBase>
55 <useReleaseProfile>false</useReleaseProfile>
56 <goals>deploy</goals>
57 </configuration>
58 </plugin>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-gpg-plugin</artifactId>
62 <executions>
63 <execution>
64 <id>sign-artifacts</id>
65 <phase>verify</phase>
66 <goals>
67 <goal>sign</goal>
68 </goals>
69 </execution>
70 </executions>
71 </plugin>
Carsten Ziegelerbbf9a672007-07-26 07:46:42 +000072 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-assembly-plugin</artifactId>
75 <configuration>
76 <descriptorRefs>
77 <descriptorRef>bin</descriptorRef>
78 <descriptorRef>project</descriptorRef>
79 </descriptorRefs>
80 </configuration>
81 <executions>
82 <execution>
83 <id>make-assembly</id>
84 <phase>package</phase>
85 <goals>
86 <goal>attached</goal>
87 </goals>
88 </execution>
89 </executions>
90 </plugin>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +000091 </plugins>
92 </build>
93 </profile>
94 </profiles>
Carsten Ziegeler9944b5d2007-08-21 13:45:04 +000095</project>