HttpServletRequestX
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.roughy.http.util</groupId>
<artifactId>HttpServletRequestX</artifactId>
<version>0.1</version>
</dependency><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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.roughy.http.util</groupId>
<artifactId>HttpServletRequestX</artifactId>
<name>HttpServletRequestX</name>
<version>0.1</version>
<description>Extension for HttpServletRequest. Easy accessing for request accept header.</description>
<url>https://github.com/roughy/HttpServletRequestX</url>
<inceptionYear>2012</inceptionYear>
<packaging>jar</packaging>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Necessary because according to the docs, site filtering doesn't work
for properties with dots in them -->
<siteProjectVersion>${project.version}</siteProjectVersion>
</properties>
<build>
<plugins>
<!-- Github plugin to deploy the documentation generated by site:deploy into the gh-pages -->
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.7</version>
<configuration>
<message>Creating site for ${project.version}</message>
<server>github</server>
</configuration>
<executions>
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.0</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
</plugin>
</reportPlugins>
</configuration>
<dependencies>
<dependency>
<groupId>net.ju-n.maven.doxia</groupId>
<artifactId>doxia-module-markdown</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0-alpha-1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<!-- junit-dep has all dependencies declared, rather than bundled (bundled causes massive classpath headaches) -->
<artifactId>junit-dep</artifactId>
<version>4.8.1</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5-rc1</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>com.devbliss.doctest</groupId>
<artifactId>doctest</artifactId>
<version>0.5.3</version>
<scope>test</scope>
</dependency>
</dependencies>
<developers>
<developer>
<name>Marco Reinwarth</name>
<email>marcoreinwarth@gmail.com</email>
<url>http://github.com/roughy</url>
<roles>
<role>Author</role>
</roles>
</developer>
</developers>
<scm>
<url>https://github.com/roughy/HttpServletRequestX</url>
<connection>scm:git://github.com/roughy/HttpServletRequestX.git</connection>
<developerConnection>scm:git:git@github.com:roughy/HttpServletRequestX.git</developerConnection>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/roughy/HttpServletRequestX/issues/</url>
</issueManagement>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
</plugin>
</plugins>
</reporting>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
</project>