diff options
author | liamfallon <liam.fallon@est.tech> | 2023-02-02 14:47:46 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2023-02-02 17:55:21 +0000 |
commit | cc83fb1b3bce889c83dafdb48b55621ff00a4d48 (patch) | |
tree | 9b898ae1ddf110c73b324ae3882431e7dac71253 /gui-server/src | |
parent | 5aa5a743a10c6e24fbb34669be00b32119bc8d64 (diff) |
Replace Eclipselink with Hibernate
Issue-ID: POLICY-4533
Change-Id: Ieda653947935448036b822960aae5498595ad4e0
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'gui-server/src')
-rw-r--r-- | gui-server/src/test/java/org/onap/policy/gui/server/config/RestTemplateConfig.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui-server/src/test/java/org/onap/policy/gui/server/config/RestTemplateConfig.java b/gui-server/src/test/java/org/onap/policy/gui/server/config/RestTemplateConfig.java index 4ffce3b..1efa826 100644 --- a/gui-server/src/test/java/org/onap/policy/gui/server/config/RestTemplateConfig.java +++ b/gui-server/src/test/java/org/onap/policy/gui/server/config/RestTemplateConfig.java @@ -1,6 +1,6 @@ /*- * ============LICENSE_START======================================================= - * Copyright (C) 2022 Nordix Foundation. + * Copyright (C) 2022-2023 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,7 +26,7 @@ import javax.annotation.PostConstruct; import lombok.Getter; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; -import org.springframework.boot.web.server.LocalServerPort; +import org.springframework.boot.test.web.server.LocalServerPort; import org.springframework.web.client.RestTemplate; /** |