diff options
author | Jim Hahn <jrh3@att.com> | 2020-01-10 17:52:57 -0500 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2020-01-10 18:43:39 -0500 |
commit | 93fb25deaadd3df511844fdf735c35cff51b4364 (patch) | |
tree | 1e0353ac32e3eaca2671a3b42b3e1181fc8b95ac /models-interactions/model-impl | |
parent | 754f9a02943058dc03337c9550e8f37fece14d25 (diff) |
Remove deprecated methods from models
Addressed the following issues related to the java 11 upgrade:
- forClass().newInstance()
- java.xml.bind no longer included in jdk
- new mockito doesn't clear captured lists
Issue-ID: POLICY-1406
Signed-off-by: Jim Hahn <jrh3@att.com>
Change-Id: Ia254c1ed21f847d1824e7abc22528975372ee2b6
Diffstat (limited to 'models-interactions/model-impl')
-rw-r--r-- | models-interactions/model-impl/aai/pom.xml | 5 | ||||
-rw-r--r-- | models-interactions/model-impl/rest/pom.xml | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/models-interactions/model-impl/aai/pom.xml b/models-interactions/model-impl/aai/pom.xml index 0548fd9d7..b6e79fc82 100644 --- a/models-interactions/model-impl/aai/pom.xml +++ b/models-interactions/model-impl/aai/pom.xml @@ -44,6 +44,11 @@ <version>${project.version}</version> </dependency> <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + <version>${version.javax.bind}</version> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> diff --git a/models-interactions/model-impl/rest/pom.xml b/models-interactions/model-impl/rest/pom.xml index 43d32957e..50902b95d 100644 --- a/models-interactions/model-impl/rest/pom.xml +++ b/models-interactions/model-impl/rest/pom.xml @@ -43,6 +43,11 @@ <scope>provided</scope> </dependency> <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + <version>${version.javax.bind}</version> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> |