diff options
author | Jimmy Forsyth <jf2512@att.com> | 2020-04-14 12:15:57 -0400 |
---|---|---|
committer | Jimmy Forsyth <jf2512@att.com> | 2020-04-14 13:31:02 -0400 |
commit | a39137cdb8755b6a15807b302ebbf8a443b99a51 (patch) | |
tree | 0db0cdd67e41a613bb3b4064f57106d437d4626d /aai-core/pom.xml | |
parent | de009c01c943e90028d4f690ba256c715137e9cc (diff) |
Fix build issue in ubuntu 1804
Issue-ID: AAI-2850
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
Change-Id: Iff320d89fa221bcb6c9fa4fb0f726724e1bb0eae
Diffstat (limited to 'aai-core/pom.xml')
-rw-r--r-- | aai-core/pom.xml | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/aai-core/pom.xml b/aai-core/pom.xml index 6ecc0fb9..fe52a664 100644 --- a/aai-core/pom.xml +++ b/aai-core/pom.xml @@ -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> @@ -206,6 +205,14 @@ limitations under the License. <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> </dependency> |