diff options
author | waynedunican <wayne.dunican@est.tech> | 2023-09-29 08:30:25 +0100 |
---|---|---|
committer | waynedunican <wayne.dunican@est.tech> | 2023-10-03 11:26:18 +0100 |
commit | 57291735494117780aa15db412a42927935fba22 (patch) | |
tree | 844c4f12bf4f31f526726318800d427f68d64c35 /gui-server/pom.xml | |
parent | 44a45353ea19d93970954f04507e2baafc7456c0 (diff) |
Upgrade Java 17
Issue-ID: POLICY-4674
Change-Id: I7435d0d3ae94a3f0da33888f396706ae49b4d69c
Signed-off-by: waynedunican <wayne.dunican@est.tech>
Diffstat (limited to 'gui-server/pom.xml')
-rw-r--r-- | gui-server/pom.xml | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/gui-server/pom.xml b/gui-server/pom.xml index 881f0d6..6448f10 100644 --- a/gui-server/pom.xml +++ b/gui-server/pom.xml @@ -2,6 +2,7 @@ <!-- ============LICENSE_START======================================================= Copyright (C) 2022 Nordix Foundation. + Modifications Copyright (C) 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. @@ -51,12 +52,11 @@ <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-prometheus</artifactId> - <version>${version.io.micrometer}</version> <scope>runtime</scope> </dependency> <dependency> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpclient</artifactId> + <groupId>org.apache.httpcomponents.client5</groupId> + <artifactId>httpclient5</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> @@ -68,6 +68,29 @@ <artifactId>gui-editor-apex</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>jakarta.annotation</groupId> + <artifactId>jakarta.annotation-api</artifactId> + <version>2.1.1</version> + </dependency> + <dependency> + <groupId>jakarta.servlet</groupId> + <artifactId>jakarta.servlet-api</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-junit-jupiter</artifactId> + </dependency> + <dependency> + <groupId>org.apache.tomcat.embed</groupId> + <artifactId>tomcat-embed-core</artifactId> + </dependency> </dependencies> <build> |