Carsten Ziegeler | 9944b5d | 2007-08-21 13:45:04 +0000 | [diff] [blame^] | 1 | <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 Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 2 | <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 Ziegeler | ef09a2c | 2007-07-24 09:39:40 +0000 | [diff] [blame] | 12 | <artifactId>commons-build</artifactId> |
Carsten Ziegeler | 9944b5d | 2007-08-21 13:45:04 +0000 | [diff] [blame^] | 13 | <version>1.0.0</version> |
Carsten Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 14 | <description> |
| 15 | These subprojects wrap common third-party jars as OSGi bundles. |
| 16 | </description> |
| 17 | <scm> |
Carsten Ziegeler | 9944b5d | 2007-08-21 13:45:04 +0000 | [diff] [blame^] | 18 | <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 Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 21 | </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 Ziegeler | bbf9a67 | 2007-07-26 07:46:42 +0000 | [diff] [blame] | 36 | <plugin> |
| 37 | <groupId>org.apache.maven.plugins</groupId> |
| 38 | <artifactId>maven-assembly-plugin</artifactId> |
| 39 | <version>2.2-beta-1</version> |
| 40 | </plugin> |
Carsten Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 41 | </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 Ziegeler | bbf9a67 | 2007-07-26 07:46:42 +0000 | [diff] [blame] | 72 | <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 Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 91 | </plugins> |
| 92 | </build> |
| 93 | </profile> |
| 94 | </profiles> |
Carsten Ziegeler | 9944b5d | 2007-08-21 13:45:04 +0000 | [diff] [blame^] | 95 | </project> |