Excluded jackson core libraries from Mockserver and moved cache config
to the full config.

Change-Id: Ia62a78377450e3cc5b9f2687e28c1a9417feed9d
diff --git a/lite/Changes b/lite/Changes
index 1901ff7..dc10e4d 100644
--- a/lite/Changes
+++ b/lite/Changes
@@ -12,6 +12,7 @@
 2021-07-26
  - Replaced annotation parsing with restoring the annotation tables to the
    database.
+ - Excluded jackson core libraries from Mockserver. 
   
 # version 0.62.4
 24/01/2020
diff --git a/lite/pom.xml b/lite/pom.xml
index bb0743f..693e203 100644
--- a/lite/pom.xml
+++ b/lite/pom.xml
@@ -209,13 +209,26 @@
 			<artifactId>backport-util-concurrent</artifactId>
 			<version>3.1</version>
 		</dependency>
-		
-		<!-- Mockserver -->
+		 <!-- Mockserver -->
 		<dependency>
 		    <groupId>org.mock-server</groupId>
 		    <artifactId>mockserver-netty</artifactId>
 		    <version>5.11.2</version>
 		    <scope>test</scope>
+		    <exclusions>
+		    	<exclusion>
+		    		<groupId>com.fasterxml.jackson.core</groupId>
+		    		<artifactId>jackson-core</artifactId>
+		    	</exclusion>
+		    	<exclusion>
+		    		<groupId>com.fasterxml.jackson.core</groupId>
+					<artifactId>jackson-annotations</artifactId>
+		    	</exclusion>
+		    	<exclusion>
+		    		<groupId>com.fasterxml.jackson.core</groupId>
+					<artifactId>jackson-databind</artifactId>
+		    	</exclusion>
+		    </exclusions>
 		</dependency>
 	</dependencies>
 </project>