blob: dbbbe403462bef914906c39ca9134e9a49809e66 [file] [log] [blame]
<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>
<groupId>com.gemstone</groupId>
<artifactId>gemfire-modules-session-external</artifactId>
<packaging>jar</packaging>
<version>${gemfire.modules.version}</version>
<url>http://maven.apache.org</url>
<name>gemfire-modules-session-external</name>
<parent>
<groupId>com.gemstone</groupId>
<artifactId>gemfire-modules-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>com.mockrunner</groupId>
<artifactId>mockrunner-servlet</artifactId>
<version>1.0.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>2.1_3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.gemstone</groupId>
<artifactId>gemfire-modules-session</artifactId>
</dependency>
<dependency>
<groupId>com.gemstone</groupId>
<artifactId>gemfire-modules</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.gemstone.gemfire</groupId>
<artifactId>gemfire</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<!--
Use this to run specific tests. Although the surefire
plugin is supposed to also be able to exclude certain
tests, it seems to not work very well.
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.2</version>
<configuration>
<useSystemClassLoader>true</useSystemClassLoader>
<includes>
<include>**/SessionUberSuite.java</include>
</includes>
<!--
Normally the session manager should only be initialized
once. For testing though, we sometimes need to be able
to do so repeatedly. This is really a fallout of the
singleton nature of the cache.
-->
<systemPropertyVariables>
<gemfire.override.session.manager.count>10000
</gemfire.override.session.manager.count>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<archive>
<manifest>
<mainClass>
com.gemstone.gemfire.modules.session.installer.Installer
</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>