Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Bartel2015-03-11 06:29:26 +0000
committerJan Bartel2015-03-11 06:29:26 +0000
commit73234c988ec3f7f336e21d193e96ef35931eae6d (patch)
treef5ab92b5a73b60a3e584d1f6bcdf0149e5767c36 /tests/test-sessions/test-infinispan-sessions/pom.xml
parent61a478943e87688457d8eba92e0125cb7dd488ff (diff)
downloadorg.eclipse.jetty.project-73234c988ec3f7f336e21d193e96ef35931eae6d.tar.gz
org.eclipse.jetty.project-73234c988ec3f7f336e21d193e96ef35931eae6d.tar.xz
org.eclipse.jetty.project-73234c988ec3f7f336e21d193e96ef35931eae6d.zip
436345 Refactor AbstractSession to minimize burden on subclasses to implement behaviour
Diffstat (limited to 'tests/test-sessions/test-infinispan-sessions/pom.xml')
-rw-r--r--tests/test-sessions/test-infinispan-sessions/pom.xml20
1 files changed, 15 insertions, 5 deletions
diff --git a/tests/test-sessions/test-infinispan-sessions/pom.xml b/tests/test-sessions/test-infinispan-sessions/pom.xml
index c94a6e18ab..d39696dac5 100644
--- a/tests/test-sessions/test-infinispan-sessions/pom.xml
+++ b/tests/test-sessions/test-infinispan-sessions/pom.xml
@@ -41,6 +41,9 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>false</skipTests>
+ <includes>
+ <include>org/eclipse/jetty/server/session/*.java</include>
+ </includes>
</configuration>
</plugin>
<plugin>
@@ -108,14 +111,20 @@
<artifactId>jetty-test-helper</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.infinispan</groupId>
+ <artifactId>infinispan-client-hotrod</artifactId>
+ <version>7.1.1.Final</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
-<!--
<profiles>
+ <!-- to test hotrod, configure a cache called "remote-session-test" -->
<profile>
- <id>mongodb</id>
+ <id>remote</id>
<activation>
<property>
- <name>mongodb.enabled</name>
+ <name>hotrod.enabled</name>
<value>true</value>
</property>
</activation>
@@ -125,12 +134,13 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <skipTests>false</skipTests>
+ <includes>
+ <include>**/*.java</include>
+ </includes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
--->
</project>

Back to the top