diff options
author | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-05-28 11:11:09 +0200 |
---|---|---|
committer | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-05-28 11:55:34 +0200 |
commit | fa42cc548fb2f002b4e94e79bcbf10fbd7bcfa6d (patch) | |
tree | d8d76d76780b69f48f13400885cc19d13ed48063 /aai-rest | |
parent | 17cf0fc2bd8ead53beadafe0fda7605fbb27f618 (diff) |
Refactor HttpEntry class - Part 1
- simplify setHttpEntryProperties (later on this will likely be done in the constructor)
- move some logic of UEBNotification into separate methods
- resolve jsonassert dependency conflict
Issue-ID: AAI-3863
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: Ic84b43156890352509dc9c547478abdf53e96d6a
Diffstat (limited to 'aai-rest')
-rw-r--r-- | aai-rest/pom.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/aai-rest/pom.xml b/aai-rest/pom.xml index 9e8697e6..0ff4dadd 100644 --- a/aai-rest/pom.xml +++ b/aai-rest/pom.xml @@ -103,6 +103,12 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>com.vaadin.external.google</groupId> + <artifactId>android-json</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> |