| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.apache.felix.commons</groupId> |
| <artifactId>commons-build</artifactId> |
| <version>1.0.0</version> |
| <relativePath>../pom</relativePath> |
| </parent> |
| <properties> |
| <pkgArtifactId>servlet-api</pkgArtifactId> |
| <pkgVersion>2.3</pkgVersion> |
| <pomVersion>0001</pomVersion> |
| <osgiVersion>${pkgVersion}.0</osgiVersion> |
| </properties> |
| <groupId>org.apache.felix.commons</groupId> |
| <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId> |
| <version>2.3.0-0002-SNAPSHOT</version> |
| <packaging>bundle</packaging> |
| <name>${pkgArtifactId} bundle</name> |
| <description> |
| This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar. |
| </description> |
| <organization> |
| <name>Apache Felix Project</name> |
| <url>http://felix.apache.org/</url> |
| </organization> |
| <scm> |
| <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/servlet-api</connection> |
| <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/servlet-api</developerConnection> |
| <url>http://svn.apache.org/viewcvs/felix/trunk/commons/servlet-api</url> |
| </scm> |
| |
| <dependencies> |
| <dependency> |
| <groupId>javax.servlet</groupId> |
| <artifactId>${pkgArtifactId}</artifactId> |
| <version>${pkgVersion}</version> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <extensions>true</extensions> |
| <configuration> |
| <instructions> |
| <Bundle-SymbolicName> |
| ${pom.artifactId} |
| </Bundle-SymbolicName> |
| <Export-Package> |
| javax.servlet;version=${pkgVersion}, |
| javax.servlet.http;version=${pkgVersion}, |
| javax.servlet.jsp;version=${pkgVersion}, |
| javax.servlet.jsp.tagext;version=${pkgVersion} |
| </Export-Package> |
| <Private-Package> |
| javax.servlet.jsp.resources, javax.servlet.resources |
| </Private-Package> |
| </instructions> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |