Carsten Ziegeler | 697b6bb | 2007-08-21 14:16:48 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Ziegeler | db730e4 | 2007-08-21 14:12:49 +0000 | [diff] [blame] | 19 | <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] | 20 | <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 Ziegeler | ef09a2c | 2007-07-24 09:39:40 +0000 | [diff] [blame] | 30 | <artifactId>commons-build</artifactId> |
Carsten Ziegeler | 13f6515 | 2007-08-21 14:13:05 +0000 | [diff] [blame] | 31 | <version>1.0.1-SNAPSHOT</version> |
Carsten Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 32 | <description> |
| 33 | These subprojects wrap common third-party jars as OSGi bundles. |
| 34 | </description> |
| 35 | <scm> |
Carsten Ziegeler | 13f6515 | 2007-08-21 14:13:05 +0000 | [diff] [blame] | 36 | <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 Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 39 | </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 Ziegeler | bbf9a67 | 2007-07-26 07:46:42 +0000 | [diff] [blame] | 54 | <plugin> |
| 55 | <groupId>org.apache.maven.plugins</groupId> |
| 56 | <artifactId>maven-assembly-plugin</artifactId> |
| 57 | <version>2.2-beta-1</version> |
| 58 | </plugin> |
Carsten Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 59 | </plugins> |
| 60 | </pluginManagement> |
Carsten Ziegeler | f47ee3f | 2007-08-21 14:12:33 +0000 | [diff] [blame] | 61 | <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 Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 72 | </build> |
| 73 | |
| 74 | <profiles> |
| 75 | <profile> |
| 76 | <id>release</id> |
| 77 | <build> |
| 78 | <plugins> |
| 79 | <plugin> |
| 80 | <groupId>org.apache.maven.plugins</groupId> |
Carsten Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 81 | <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 Ziegeler | bbf9a67 | 2007-07-26 07:46:42 +0000 | [diff] [blame] | 92 | <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 Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 111 | </plugins> |
| 112 | </build> |
| 113 | </profile> |
| 114 | </profiles> |
Carsten Ziegeler | 9944b5d | 2007-08-21 13:45:04 +0000 | [diff] [blame] | 115 | </project> |