Carsten Ziegeler | c19e17c | 2008-01-03 09:15:17 +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 | 08ea07b | 2008-01-07 10:50:25 +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"> |
Michael E. Rodriguez | 75c3268 | 2006-03-30 22:39:10 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix</artifactId> |
Carsten Ziegeler | 9853489 | 2008-01-04 13:36:48 +0000 | [diff] [blame] | 23 | <version>1.0.0</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 24 | <relativePath>../pom/pom.xml</relativePath> |
Michael E. Rodriguez | 75c3268 | 2006-03-30 22:39:10 +0000 | [diff] [blame] | 25 | </parent> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 26 | <modelVersion>4.0.0</modelVersion> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 27 | <name>Servlet 2.1 API</name> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 28 | <description>Servlet 2.1 API</description> |
Carsten Ziegeler | 39f609e | 2008-01-07 13:52:56 +0000 | [diff] [blame] | 29 | <version>1.0.1-SNAPSHOT</version> |
Michael E. Rodriguez | 75c3268 | 2006-03-30 22:39:10 +0000 | [diff] [blame] | 30 | <artifactId>javax.servlet</artifactId> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 31 | <packaging>bundle</packaging> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 32 | <build> |
Carsten Ziegeler | 08ea07b | 2008-01-07 10:50:25 +0000 | [diff] [blame] | 33 | <pluginManagement> |
| 34 | <plugins> |
| 35 | <plugin> |
| 36 | <groupId>org.apache.maven.plugins</groupId> |
| 37 | <artifactId>maven-release-plugin</artifactId> |
| 38 | <version>2.0-beta-7</version> |
| 39 | </plugin> |
| 40 | <plugin> |
| 41 | <groupId>org.apache.maven.plugins</groupId> |
| 42 | <artifactId>maven-gpg-plugin</artifactId> |
| 43 | <version>1.0-alpha-4</version> |
| 44 | </plugin> |
| 45 | <plugin> |
| 46 | <groupId>org.apache.maven.plugins</groupId> |
| 47 | <artifactId>maven-assembly-plugin</artifactId> |
| 48 | <version>2.2-beta-1</version> |
| 49 | </plugin> |
| 50 | </plugins> |
| 51 | </pluginManagement> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 52 | <plugins> |
| 53 | <plugin> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 54 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 55 | <artifactId>maven-bundle-plugin</artifactId> |
Carsten Ziegeler | 9853489 | 2008-01-04 13:36:48 +0000 | [diff] [blame] | 56 | <version>1.0.0</version> |
Michael E. Rodriguez | 75c3268 | 2006-03-30 22:39:10 +0000 | [diff] [blame] | 57 | <extensions>true</extensions> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 58 | <configuration> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 59 | <instructions> |
| 60 | <Bundle-Copyright>Copyright 1999,2005 The Apache Software Foundation</Bundle-Copyright> |
| 61 | <Bundle-Category>servlet</Bundle-Category> |
| 62 | <Export-Package>javax.servlet;specification-version="2.1",javax.servlet.http;specification-version="2.1"</Export-Package> |
| 63 | <Import-Package>!javax.servlet.*,*</Import-Package> |
| 64 | </instructions> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 65 | </configuration> |
| 66 | </plugin> |
Carsten Ziegeler | 08ea07b | 2008-01-07 10:50:25 +0000 | [diff] [blame] | 67 | <plugin> |
| 68 | <groupId>org.apache.maven.plugins</groupId> |
| 69 | <artifactId>maven-release-plugin</artifactId> |
| 70 | <configuration> |
| 71 | <tagBase>https://svn.apache.org/repos/asf/felix/releases</tagBase> |
| 72 | <useReleaseProfile>false</useReleaseProfile> |
| 73 | <goals>deploy</goals> |
| 74 | </configuration> |
| 75 | </plugin> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 76 | </plugins> |
| 77 | </build> |
Carsten Ziegeler | 08ea07b | 2008-01-07 10:50:25 +0000 | [diff] [blame] | 78 | <profiles> |
| 79 | <profile> |
| 80 | <id>release</id> |
| 81 | <build> |
| 82 | <plugins> |
| 83 | <plugin> |
| 84 | <groupId>org.apache.maven.plugins</groupId> |
| 85 | <artifactId>maven-gpg-plugin</artifactId> |
| 86 | <executions> |
| 87 | <execution> |
| 88 | <id>sign-artifacts</id> |
| 89 | <phase>verify</phase> |
| 90 | <goals> |
| 91 | <goal>sign</goal> |
| 92 | </goals> |
| 93 | </execution> |
| 94 | </executions> |
| 95 | </plugin> |
| 96 | <plugin> |
| 97 | <groupId>org.apache.maven.plugins</groupId> |
| 98 | <artifactId>maven-assembly-plugin</artifactId> |
| 99 | <configuration> |
| 100 | <descriptorRefs> |
| 101 | <descriptorRef>bin</descriptorRef> |
| 102 | <descriptorRef>project</descriptorRef> |
| 103 | </descriptorRefs> |
| 104 | </configuration> |
| 105 | <executions> |
| 106 | <execution> |
| 107 | <id>make-assembly</id> |
| 108 | <phase>package</phase> |
| 109 | <goals> |
| 110 | <goal>attached</goal> |
| 111 | </goals> |
| 112 | </execution> |
| 113 | </executions> |
| 114 | </plugin> |
| 115 | </plugins> |
| 116 | </build> |
| 117 | </profile> |
| 118 | </profiles> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 119 | </project> |