keycloak-aplcache

Fix Tomcat 6 issues (#4478) * Fix Tomcat test failures due

9/15/2017 4:55:42 AM

Changes

pom.xml 6(+6 -0)

Details

pom.xml 6(+6 -0)

diff --git a/pom.xml b/pom.xml
index 337c568..9beb551 100755
--- a/pom.xml
+++ b/pom.xml
@@ -597,6 +597,12 @@
                 <artifactId>wildfly-undertow</artifactId>
                 <version>${wildfly.version}</version>
                 <scope>test</scope>
+                <exclusions>
+                    <exclusion>
+                        <groupId>io.undertow.jastow</groupId>
+                        <artifactId>jastow</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
             <dependency>
                 <groupId>org.wildfly.core</groupId>
diff --git a/travis-run-tests.sh b/travis-run-tests.sh
index e3506cf..7776f57 100755
--- a/travis-run-tests.sh
+++ b/travis-run-tests.sh
@@ -15,6 +15,8 @@ if [ $1 == "old" ]; then
     cd testsuite
     mvn test -B -nsu -f integration-deprecated
     mvn test -B -nsu -f jetty
+    mvn test -B -nsu -f proxy
+    mvn test -B -nsu -f tomcat6
     mvn test -B -nsu -f tomcat7
     mvn test -B -nsu -f tomcat8
 fi