keycloak-uncached

Changes

pom.xml 11(+11 -0)

testsuite/pom.xml 10(+10 -0)

Details

diff --git a/model/infinispan/pom.xml b/model/infinispan/pom.xml
index 5c3efbb..751e97e 100755
--- a/model/infinispan/pom.xml
+++ b/model/infinispan/pom.xml
@@ -49,6 +49,14 @@
             <artifactId>jboss-logging</artifactId>
         </dependency>
         <dependency>
+            <groupId>org.jboss.marshalling</groupId>
+            <artifactId>jboss-marshalling</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.marshalling</groupId>
+            <artifactId>jboss-marshalling-river</artifactId>
+        </dependency>
+        <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
             <scope>test</scope>

pom.xml 11(+11 -0)

diff --git a/pom.xml b/pom.xml
index 90de818..72390c9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -445,6 +445,17 @@
                 <version>${wildfly.version}</version>
             </dependency>
             <dependency>
+                <groupId>org.infinispan</groupId>
+                <artifactId>infinispan-core</artifactId>
+                <version>${infinispan.version}</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>org.jboss.marshalling</groupId>
+                        <artifactId>jboss-marshalling-osgi</artifactId>
+                    </exclusion>
+                </exclusions>
+            </dependency>
+            <dependency>
                 <groupId>org.liquibase</groupId>
                 <artifactId>liquibase-core</artifactId>
                 <version>${liquibase.version}</version>

testsuite/pom.xml 10(+10 -0)

diff --git a/testsuite/pom.xml b/testsuite/pom.xml
index b67a1b9..c9558a5 100755
--- a/testsuite/pom.xml
+++ b/testsuite/pom.xml
@@ -31,6 +31,16 @@
     <name>Keycloak TestSuite</name>
     <description />
 
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.infinispan</groupId>
+                <artifactId>infinispan-core</artifactId>
+                <version>${infinispan.version}</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
     <build>
         <plugins>
             <plugin>