diff options
author | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2022-10-13 14:26:19 +0000 |
---|---|---|
committer | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2022-10-14 07:58:01 +0000 |
commit | 67acb223c78e804bdd3a4f0b1d51ed4c87e070a1 (patch) | |
tree | 24da3c4fa791ddad3ce6f3b3f2748e0b478c4f69 /aai-schema-abstraction/pom.xml | |
parent | 271e8f5f853c7ed8c277f5c12607a4633dd5b136 (diff) |
Update eclipse.persistence and eelf.core in aai-common
- update eclipse persistence to version 2.7.11
- update eelf core to 2.0.0-oss
- pin eelf core version in aai-utils and aai-schema-abstraction to 1.0.1 since there would be IncompatibleClassChange errors
- add the jaxb-api dependency to aai-utils to make it compilable with jdk 11
Issue-ID: AAI-3550
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: Ia2aa31a9f3550af853583e65bc1f84583c9fc22f
Diffstat (limited to 'aai-schema-abstraction/pom.xml')
-rw-r--r-- | aai-schema-abstraction/pom.xml | 41 |
1 files changed, 19 insertions, 22 deletions
diff --git a/aai-schema-abstraction/pom.xml b/aai-schema-abstraction/pom.xml index 1448002a..e7c80913 100644 --- a/aai-schema-abstraction/pom.xml +++ b/aai-schema-abstraction/pom.xml @@ -21,8 +21,8 @@ ============LICENSE_END========================================================= --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> @@ -50,61 +50,58 @@ </exclusion> </exclusions> </dependency> - <dependency> <groupId>org.onap.aai.logging-service</groupId> <artifactId>common-logging</artifactId> </dependency> - + <dependency> + <groupId>com.att.eelf</groupId> + <artifactId>eelf-core</artifactId> + <version>1.0.1-oss</version> + </dependency> <dependency> <groupId>org.onap.aai.logging-service</groupId> <artifactId>logging-api</artifactId> </dependency> - <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-core</artifactId> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-core</artifactId> </dependency> <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-classic</artifactId> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> </dependency> <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-access</artifactId> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-access</artifactId> </dependency> - <dependency> - <groupId>org.codehaus.jackson</groupId> - <artifactId>jackson-core-asl</artifactId> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-core-asl</artifactId> </dependency> <dependency> - <groupId>org.codehaus.jackson</groupId> - <artifactId>jackson-mapper-asl</artifactId> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-mapper-asl</artifactId> </dependency> <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-databind</artifactId> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> </dependency> - <dependency> <groupId>org.onap.aai</groupId> <artifactId>rest-client</artifactId> </dependency> - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> - <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> - <build> <plugins> <!-- license plugin --> |