Fix build issue in ubuntu 1804 24/105924/2
authorJimmy Forsyth <jf2512@att.com>
Tue, 14 Apr 2020 16:15:57 +0000 (12:15 -0400)
committerJimmy Forsyth <jf2512@att.com>
Tue, 14 Apr 2020 17:31:02 +0000 (13:31 -0400)
Issue-ID: AAI-2850
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
Change-Id: Iff320d89fa221bcb6c9fa4fb0f726724e1bb0eae

aai-core/pom.xml
aai-core/src/test/java/org/onap/aai/rest/PrivateEdgeIntegrationTest.java
aai-core/src/test/java/org/onap/aai/serialization/queryformats/CountQuerySupportTest.java
aai-parent/pom.xml

index 6ecc0fb..fe52a66 100644 (file)
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-
 ============LICENSE_START======================================================
 org.onap.aai
 ===============================================================================
@@ -9,16 +8,15 @@ Copyright © 2019 AT&T Intellectual Property. All rights reserved.
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
-
+               
 http://www.apache.org/licenses/LICENSE-2.0
-
+               
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 ===========LICENSE_END=========================================================
-
 -->
 <project
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
@@ -98,7 +96,7 @@ limitations under the License.
                                <version>2.8</version>
                        </plugin>
                        <plugin>
-                               <!-- explicitly define maven-deploy-plugin after other to force exec
+                               <!-- explicitly define maven-deploy-plugin after other to force exec 
                                        order -->
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-deploy-plugin</artifactId>
@@ -135,11 +133,12 @@ limitations under the License.
                <dependency>
                        <groupId>com.att.eelf</groupId>
                        <artifactId>eelf-core</artifactId>
-                       <exclusions><!-- excluding transitive dependency coming from this artifact, as we would need powermock-api-mockito2-->
-                                               <exclusion>
-                                                               <groupId>org.powermock</groupId>
-                                                               <artifactId>powermock-api-mockito</artifactId>
-                                               </exclusion>
+                       <exclusions><!-- excluding transitive dependency coming from this artifact, 
+                                       as we would need powermock-api-mockito2 -->
+                               <exclusion>
+                                       <groupId>org.powermock</groupId>
+                                       <artifactId>powermock-api-mockito</artifactId>
+                               </exclusion>
                        </exclusions>
                </dependency>
                <dependency>
@@ -205,6 +204,14 @@ limitations under the License.
                        <groupId>javax.xml.bind</groupId>
                        <artifactId>jaxb-api</artifactId>
                </dependency>
+               <dependency>
+                       <groupId>com.sun.xml.bind</groupId>
+                       <artifactId>jaxb-impl</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>com.sun.xml.bind</groupId>
+                       <artifactId>jaxb-core</artifactId>
+               </dependency>
                <dependency>
                        <groupId>org.eclipse.persistence</groupId>
                        <artifactId>eclipselink</artifactId>
index 3bb017d..8753b1b 100644 (file)
@@ -21,6 +21,7 @@
 package org.onap.aai.rest;
 
 import static junit.framework.TestCase.fail;
+
 import static org.hamcrest.CoreMatchers.containsString;
 import static org.hamcrest.CoreMatchers.not;
 import static org.hamcrest.MatcherAssert.assertThat;
@@ -51,7 +52,9 @@ import org.onap.aai.PayloadUtil;
 import org.onap.aai.dbmap.AAIGraph;
 import org.onap.aai.serialization.engines.QueryStyle;
 import org.onap.aai.setup.SchemaVersion;
+import org.springframework.test.annotation.DirtiesContext;
 
+@DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
 @RunWith(value = Parameterized.class)
 public class PrivateEdgeIntegrationTest extends AAISetup {
 
index e128c2f..33b2dab 100644 (file)
@@ -44,6 +44,7 @@ import org.onap.aai.serialization.queryformats.exceptions.AAIFormatQueryResultFo
 import org.onap.aai.serialization.queryformats.exceptions.AAIFormatVertexException;
 import org.onap.aai.setup.SchemaVersion;
 import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.test.annotation.DirtiesContext;
 
 import java.util.Arrays;
 import java.util.List;
@@ -52,6 +53,10 @@ import static org.junit.Assert.assertEquals;
 import static org.mockito.Mockito.spy;
 import static org.mockito.Mockito.when;
 
+
+
+@DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
+
 public class CountQuerySupportTest extends AAISetup {
 
     @Autowired
index 6faf6b7..072200a 100644 (file)
@@ -72,7 +72,8 @@ limitations under the License.
     <jackson.bom.version>2.10.1</jackson.bom.version>
     <janusgraph.version>0.2.3</janusgraph.version>
     <javatuples.version>1.2</javatuples.version>
-    <jaxb.version>2.2.12</jaxb.version>
+    <jaxb.version>2.3.1</jaxb.version>
+    <old.jaxb.version>2.3.0.1</old.jaxb.version>
     <jaxrs.version>2.0.1</jaxrs.version>
     <jcommander.version>1.78</jcommander.version>
     <jersey.version>1.19.4</jersey.version>
@@ -502,7 +503,19 @@ limitations under the License.
       <dependency>
         <groupId>com.sun.xml.bind</groupId>
         <artifactId>jaxb-xjc</artifactId>
-        <version>${jaxb.version}</version>
+        <version>${old.jaxb.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>com.sun.xml.bind</groupId>
+        <artifactId>jaxb-impl</artifactId>
+        <version>${old.jaxb.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>com.sun.xml.bind</groupId>
+        <artifactId>jaxb-core</artifactId>
+        <version>${old.jaxb.version}</version>
       </dependency>
 
       <dependency>