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-utils | |
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-utils')
-rw-r--r-- | aai-utils/pom.xml | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/aai-utils/pom.xml b/aai-utils/pom.xml index e3ada307..d5872b59 100644 --- a/aai-utils/pom.xml +++ b/aai-utils/pom.xml @@ -21,9 +21,7 @@ ============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> @@ -41,28 +39,32 @@ </properties> <dependencies> - + <dependency> + <groupId>com.att.eelf</groupId> + <artifactId>eelf-core</artifactId> + <version>1.0.1-oss</version> + </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> - <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> - <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>eclipselink</artifactId> </dependency> - + <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </dependency> <!-- Common logging framework --> <dependency> <groupId>org.onap.aai.logging-service</groupId> <artifactId>common-logging</artifactId> </dependency> - <!-- https://mvnrepository.com/artifact/org.springframework/spring-core --> <dependency> <groupId>org.springframework</groupId> @@ -76,7 +78,6 @@ <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> @@ -112,4 +113,4 @@ </plugins> </build> -</project> +</project>
\ No newline at end of file |