Fix security vulnerabilities 39/86039/2
authoreconwar <conor.ward@est.tech>
Tue, 23 Apr 2019 13:32:22 +0000 (13:32 +0000)
committereconwar <conor.ward@est.tech>
Tue, 23 Apr 2019 13:32:22 +0000 (13:32 +0000)
Change-Id: Ib0812a1cdf6bd2fcf2c22e468363667f52d9864d
Issue-ID: DMAAP-1176
Signed-off-by: econwar <conor.ward@est.tech>
datarouter-node/pom.xml
datarouter-prov/pom.xml
datarouter-subscriber/pom.xml
pom.xml

index 06aa3fc..537b05b 100755 (executable)
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-lang3</artifactId>
         </dependency>
+        <dependency>
+            <groupId>com.thoughtworks.xstream</groupId>
+            <artifactId>xstream</artifactId>
+        </dependency>
     </dependencies>
     <profiles>
         <profile>
index c6f6ff3..281cea7 100755 (executable)
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-entitymanager</artifactId>
-            <version>5.2.9.Final</version>
+            <version>5.4.1.Final</version>
         </dependency>
         <dependency>
             <groupId>org.hamcrest</groupId>
             <artifactId>hibernate-jpa-2.1-api</artifactId>
             <version>1.0.2.Final</version>
         </dependency>
+        <dependency>
+            <groupId>com.thoughtworks.xstream</groupId>
+            <artifactId>xstream</artifactId>
+        </dependency>
     </dependencies>
     <profiles>
         <profile>
index 6c577a3..0182362 100755 (executable)
             <version>1.2.17</version>
             <scope>compile</scope>
         </dependency>
+        <dependency>
+            <groupId>com.thoughtworks.xstream</groupId>
+            <artifactId>xstream</artifactId>
+        </dependency>
     </dependencies>
     <profiles>
         <profile>
diff --git a/pom.xml b/pom.xml
index 1e239cd..7a524b5 100755 (executable)
--- a/pom.xml
+++ b/pom.xml
@@ -85,7 +85,7 @@
         <sl4j-api.version>1.7.25</sl4j-api.version>
         <hamcrest-lib.version>1.3</hamcrest-lib.version>
         <annotations.version>12.0</annotations.version>
-
+        <xstream.version>1.4.10</xstream.version>
     </properties>
     <modules>
         <module>datarouter-prov</module>
                 <artifactId>json</artifactId>
                 <version>${json.version}</version>
             </dependency>
+            <dependency>
+                <groupId>com.thoughtworks.xstream</groupId>
+                <artifactId>xstream</artifactId>
+                <version>${xstream.version}</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
     <build>