blob: bb554174514ca7cd081f46e5d5d060272470cf7c [file] [log] [blame]
Carsten Ziegelere5eb9912007-08-22 07:18:10 +00001<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. Rodriguez483d4aa2007-03-14 04:58:28 +00002 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.apache.felix.commons</groupId>
Carsten Ziegeleref09a2c2007-07-24 09:39:40 +00005 <artifactId>commons-build</artifactId>
Carsten Ziegeler08d11b72007-08-22 06:46:55 +00006 <version>1.0.0</version>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +00007 <relativePath>../pom</relativePath>
Michael E. Rodriguez483d4aa2007-03-14 04:58:28 +00008 </parent>
9 <properties>
10 <pkgArtifactId>servlet-api</pkgArtifactId>
Carsten Ziegelerb446d432007-08-22 07:17:42 +000011 <pkgVersion>2.4</pkgVersion>
Michael E. Rodriguez483d4aa2007-03-14 04:58:28 +000012 <pomVersion>0001</pomVersion>
13 <osgiVersion>${pkgVersion}.0</osgiVersion>
14 </properties>
15 <groupId>org.apache.felix.commons</groupId>
16 <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId>
Carsten Ziegelerbbe8d222007-08-22 07:18:22 +000017 <version>2.4.0-0002-SNAPSHOT</version>
Michael E. Rodriguez483d4aa2007-03-14 04:58:28 +000018 <packaging>bundle</packaging>
19 <name>${pkgArtifactId} bundle</name>
20 <description>
21 This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
22 </description>
23 <organization>
24 <name>Apache Felix Project</name>
Karl Pauls5a105ac2007-06-18 20:54:19 +000025 <url>http://felix.apache.org/</url>
Michael E. Rodriguez483d4aa2007-03-14 04:58:28 +000026 </organization>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000027 <scm>
Carsten Ziegelerbbe8d222007-08-22 07:18:22 +000028 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/servlet-api</connection>
29 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/servlet-api</developerConnection>
30 <url>http://svn.apache.org/viewcvs/felix/trunk/commons/servlet-api</url>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000031 </scm>
32
Michael E. Rodriguez483d4aa2007-03-14 04:58:28 +000033 <dependencies>
34 <dependency>
35 <groupId>javax.servlet</groupId>
36 <artifactId>${pkgArtifactId}</artifactId>
37 <version>${pkgVersion}</version>
38 </dependency>
39 </dependencies>
40 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000044 <artifactId>maven-bundle-plugin</artifactId>
Michael E. Rodriguez483d4aa2007-03-14 04:58:28 +000045 <extensions>true</extensions>
46 <configuration>
47 <instructions>
48 <Bundle-SymbolicName>
49 ${pom.artifactId}
50 </Bundle-SymbolicName>
51 <Export-Package>
52 javax.servlet;version=${pkgVersion},
53 javax.servlet.http;version=${pkgVersion},
54 javax.servlet.jsp;version=${pkgVersion},
55 javax.servlet.jsp.tagext;version=${pkgVersion}
56 </Export-Package>
57 <Private-Package>
58 javax.servlet.jsp.resources, javax.servlet.resources
59 </Private-Package>
60 </instructions>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
Carsten Ziegeler858c6522007-08-22 07:06:00 +000065</project>