diff options
author | Yoo, Brian (by703c) <by703c@att.com> | 2021-01-22 13:50:01 -0500 |
---|---|---|
committer | Harish Venkata Kajur <vk250x@att.com> | 2021-02-11 18:41:46 -0500 |
commit | a9fee2cb1c991ce478e48ecc749ded2bc55181e2 (patch) | |
tree | 8b93f17f185eedefaa06edbd426c992d963f9a39 /aai-schema-gen | |
parent | 019da323750e5c0fd2e1a0af181a190ea4dc32e6 (diff) |
Add java 11 code support1.8.4
Issue-ID: AAI-3009
Change-Id: Ic65c49e6071f240ec9fe583fa939cc965f928fc9
Signed-off-by: Yoo, Brian (by703c) <by703c@att.com>
Signed-off-by: Harish Venkata Kajur <vk250x@att.com>
Diffstat (limited to 'aai-schema-gen')
-rw-r--r-- | aai-schema-gen/pom.xml | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/aai-schema-gen/pom.xml b/aai-schema-gen/pom.xml index 16acc81..a4217f6 100644 --- a/aai-schema-gen/pom.xml +++ b/aai-schema-gen/pom.xml @@ -599,9 +599,28 @@ </build> </profile> </profiles> - <dependencies> <dependency> + <groupId>javax.annotation</groupId> + <artifactId>javax.annotation-api</artifactId> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + <version>2.3.0</version> + </dependency> + <dependency> + <groupId>org.eclipse.persistence</groupId> + <artifactId>eclipselink</artifactId> + <version>3.0.0</version> + </dependency> + <dependency> + <groupId>org.eclipse.persistence</groupId> + <artifactId>org.eclipse.persistence.moxy</artifactId> + <version>3.0.0</version> + </dependency> + <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> |