Carsten Ziegeler | 500bb6d | 2007-08-21 14:04:29 +0000 | [diff] [blame^] | 1 | <?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 Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 23 | <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 Ziegeler | ef09a2c | 2007-07-24 09:39:40 +0000 | [diff] [blame] | 33 | <artifactId>commons-build</artifactId> |
Carsten Ziegeler | 500bb6d | 2007-08-21 14:04:29 +0000 | [diff] [blame^] | 34 | <version>1.0.0-SNAPSHOT</version> |
Carsten Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 35 | <description> |
| 36 | These subprojects wrap common third-party jars as OSGi bundles. |
| 37 | </description> |
| 38 | <scm> |
Carsten Ziegeler | 500bb6d | 2007-08-21 14:04:29 +0000 | [diff] [blame^] | 39 | <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 Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 42 | </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 Ziegeler | bbf9a67 | 2007-07-26 07:46:42 +0000 | [diff] [blame] | 57 | <plugin> |
| 58 | <groupId>org.apache.maven.plugins</groupId> |
| 59 | <artifactId>maven-assembly-plugin</artifactId> |
| 60 | <version>2.2-beta-1</version> |
| 61 | </plugin> |
Carsten Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 62 | </plugins> |
| 63 | </pluginManagement> |
| 64 | </build> |
| 65 | |
| 66 | <profiles> |
| 67 | <profile> |
| 68 | <id>release</id> |
| 69 | <build> |
| 70 | <plugins> |
| 71 | <plugin> |
| 72 | <groupId>org.apache.maven.plugins</groupId> |
| 73 | <artifactId>maven-release-plugin</artifactId> |
| 74 | <configuration> |
Carsten Ziegeler | 500bb6d | 2007-08-21 14:04:29 +0000 | [diff] [blame^] | 75 | <tagBase>https://svn.apache.org/repos/asf/felix/releases</tagBase> |
Carsten Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 76 | <useReleaseProfile>false</useReleaseProfile> |
| 77 | <goals>deploy</goals> |
| 78 | </configuration> |
| 79 | </plugin> |
| 80 | <plugin> |
| 81 | <groupId>org.apache.maven.plugins</groupId> |
| 82 | <artifactId>maven-gpg-plugin</artifactId> |
| 83 | <executions> |
| 84 | <execution> |
| 85 | <id>sign-artifacts</id> |
| 86 | <phase>verify</phase> |
| 87 | <goals> |
| 88 | <goal>sign</goal> |
| 89 | </goals> |
| 90 | </execution> |
| 91 | </executions> |
| 92 | </plugin> |
Carsten Ziegeler | bbf9a67 | 2007-07-26 07:46:42 +0000 | [diff] [blame] | 93 | <plugin> |
| 94 | <groupId>org.apache.maven.plugins</groupId> |
| 95 | <artifactId>maven-assembly-plugin</artifactId> |
| 96 | <configuration> |
| 97 | <descriptorRefs> |
| 98 | <descriptorRef>bin</descriptorRef> |
| 99 | <descriptorRef>project</descriptorRef> |
| 100 | </descriptorRefs> |
| 101 | </configuration> |
| 102 | <executions> |
| 103 | <execution> |
| 104 | <id>make-assembly</id> |
| 105 | <phase>package</phase> |
| 106 | <goals> |
| 107 | <goal>attached</goal> |
| 108 | </goals> |
| 109 | </execution> |
| 110 | </executions> |
| 111 | </plugin> |
Carsten Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 112 | </plugins> |
| 113 | </build> |
| 114 | </profile> |
| 115 | </profiles> |
Carsten Ziegeler | 9944b5d | 2007-08-21 13:45:04 +0000 | [diff] [blame] | 116 | </project> |