Maven Repository - POM file for Servlet simple-session-filter 0.2 0.2

Summary

A simple servlet filter for implementing custom session management.

Declaration

Here is the list of declaration for simple-session-filter. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.realityforge.ssf</groupId>
   <artifactId>simple-session-filter</artifactId>
   <version>0.2</version>
</dependency>

If you think this Maven repository POM file listing for simple-session-filter is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.

Depends on

The simple-session-filter-0.2 has 9 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Servletgeronimo-servlet_3.0_spec 1.0
Servlet 3.0 API
77
Testing Coding Stylejsr305 2.0.1
JSR305 Annotations for Findbugs
166
Testingtestng 6.8.7
TestNG is a testing framework.
97
Consolejcommander 1.27
A Java framework to parse command line options with annotations.
21
Testing Mockmockito-all 1.9.5
Mock objects library for java
1072




Packages

The following packages are defined in the simple-session-filter-0.2.jar

org.realityforge.ssf

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<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>
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>
  <groupId>org.realityforge.ssf</groupId>
  <artifactId>simple-session-filter</artifactId>
  <version>0.2</version>
  <packaging>jar</packaging>
  <name>A simple servlet filter for implementing custom session management</name>
  <description>A simple servlet filter for implementing custom session management</description>
  <url>https://github.com/realityforge/simple-session-filter</url>
  <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>
  <scm>
    <connection>scm:git:git@github.com:realityforge/simple-session-filter.git</connection>
    <developerConnection>scm:git:git@github.com:realityforge/simple-session-filter.git</developerConnection>
    <url>git@github.com:realityforge/simple-session-filter.git</url>
  </scm>
  <issueManagement>
    <url>https://github.com/realityforge/simple-session-filter/issues</url>
    <system>GitHub Issues</system>
  </issueManagement>
  
  <dependencies>
    <dependency>
      <groupId>org.apache.geronimo.specs</groupId>
      <artifactId>geronimo-servlet_3.0_spec</artifactId>
      <version>1.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>2.0.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>6.8.7</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.beust</groupId>
      <artifactId>jcommander</artifactId>
      <version>1.27</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jmock</groupId>
      <artifactId>jmock</artifactId>
      <version>2.5.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jmock</groupId>
      <artifactId>jmock-junit4</artifactId>
      <version>2.5.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-core</artifactId>
      <version>1.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-library</artifactId>
      <version>1.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.9.5</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>