Felix Meschberger | 868bfdc | 2007-09-24 13:36:10 +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" 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"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
Carsten Ziegeler | d524f6f | 2008-01-16 07:28:57 +0000 | [diff] [blame] | 23 | <groupId>org.apache.felix</groupId> |
| 24 | <artifactId>felix</artifactId> |
Clement Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 25 | <version>1.0.4</version> |
Carsten Ziegeler | d524f6f | 2008-01-16 07:28:57 +0000 | [diff] [blame] | 26 | <relativePath>../../pom</relativePath> |
Felix Meschberger | 868bfdc | 2007-09-24 13:36:10 +0000 | [diff] [blame] | 27 | </parent> |
Carsten Ziegeler | d524f6f | 2008-01-16 07:28:57 +0000 | [diff] [blame] | 28 | |
Felix Meschberger | 868bfdc | 2007-09-24 13:36:10 +0000 | [diff] [blame] | 29 | <properties> |
| 30 | <pkgArtifactId>jsp-api</pkgArtifactId> |
| 31 | <pkgVersion>2.0</pkgVersion> |
| 32 | <pomVersion>0001</pomVersion> |
| 33 | <osgiVersion>${pkgVersion}.0</osgiVersion> |
| 34 | </properties> |
| 35 | <groupId>org.apache.felix.commons</groupId> |
| 36 | <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId> |
| 37 | <version>${osgiVersion}-${pomVersion}-SNAPSHOT</version> |
| 38 | <packaging>bundle</packaging> |
| 39 | <name>${pkgArtifactId} bundle</name> |
| 40 | <description> |
| 41 | This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar. |
| 42 | </description> |
| 43 | <organization> |
| 44 | <name>Apache Felix Project</name> |
| 45 | <url>http://felix.apache.org/</url> |
| 46 | </organization> |
| 47 | <scm> |
| 48 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/jsp-api</connection> |
| 49 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/jsp-api</developerConnection> |
| 50 | <url>http://svn.apache.org/viewcvs/felix/trunk/commons/jsp-api</url> |
| 51 | </scm> |
| 52 | |
| 53 | <dependencies> |
| 54 | <dependency> |
| 55 | <groupId>javax.servlet</groupId> |
| 56 | <artifactId>${pkgArtifactId}</artifactId> |
| 57 | <version>${pkgVersion}</version> |
| 58 | </dependency> |
| 59 | </dependencies> |
| 60 | <build> |
| 61 | <plugins> |
| 62 | <plugin> |
| 63 | <groupId>org.apache.felix</groupId> |
| 64 | <artifactId>maven-bundle-plugin</artifactId> |
Stuart McCulloch | 876ca72 | 2008-02-26 17:15:42 +0000 | [diff] [blame] | 65 | <version>1.4.0</version> |
Felix Meschberger | 868bfdc | 2007-09-24 13:36:10 +0000 | [diff] [blame] | 66 | <extensions>true</extensions> |
| 67 | <configuration> |
| 68 | <instructions> |
| 69 | <Bundle-SymbolicName> |
| 70 | ${pom.artifactId} |
| 71 | </Bundle-SymbolicName> |
| 72 | <Export-Package> |
| 73 | javax.servlet.jsp;version=${pkgVersion}, |
| 74 | javax.servlet.jsp.el;version=${pkgVersion}, |
| 75 | javax.servlet.jsp.tagext;version=${pkgVersion}, |
| 76 | </Export-Package> |
| 77 | <Private-Package> |
| 78 | javax.servlet.jsp.resources, |
| 79 | META-INF |
| 80 | </Private-Package> |
| 81 | </instructions> |
| 82 | </configuration> |
| 83 | </plugin> |
| 84 | </plugins> |
| 85 | </build> |
| 86 | </project> |