<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">
    <parent>
        <artifactId>boxspring-modules-parent</artifactId>
        <groupId>com.mtvnet.boxspring.modules</groupId>
        <version>3</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.mtvnet.boxspring.modules</groupId>
    <artifactId>boxspring-http-objects-holder</artifactId>
    <version>1.0.1</version>
    <packaging>bundle</packaging>
    <name>HTTP Objects Holder Module</name>
    <description>BoxSpring module which makes the current HttpServletRequest and HttpServletResponse available as Spring-beans.</description>
	<scm>
        <url>http://kenai.com/projects/boxspring/sources/modules-svn/show/tags/boxspring-http-objects-holder-1.0.1</url>
        <developerConnection>scm:svn:https://kenai.com/svn/boxspring~modules-svn/tags/boxspring-http-objects-holder-1.0.1</developerConnection>
        <connection>scm:svn:https://kenai.com/svn/boxspring~modules-svn/tags/boxspring-http-objects-holder-1.0.1</connection>
    </scm>
    <dependencies>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.4</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.1</version>
        </dependency>
        <dependency>
            <groupId>com.mtvnet.boxspring</groupId>
            <artifactId>boxspring-test-support</artifactId>
            <version>1.0.0-beta-3</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <configuration>
                    <instructions>
                        <Export-Package>com.mtvnet.boxspring.httpobjects</Export-Package>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>