Run policy GUIs in a single JAR
Create gui-server module serving clamp and apex GUIs using Spring
Add Spring filter to pass client SSL cert to clamp backend
Remove nginx from docker image
Add logback.xml to docker image
Add helper scripts for running gui-server jar and docker
Issue-ID: POLICY-3638
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: Ie857f5755015c522b8cf781de255f7a1d567e263
diff --git a/packages/policy-gui-docker/pom.xml b/packages/policy-gui-docker/pom.xml
index 36047b7..7d56634 100644
--- a/packages/policy-gui-docker/pom.xml
+++ b/packages/policy-gui-docker/pom.xml
@@ -1,6 +1,6 @@
<!--
============LICENSE_START=======================================================
- Copyright (C) 2021 Nordix Foundation.
+ Copyright (C) 2021-2022 Nordix Foundation.
================================================================================
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -92,9 +92,9 @@
<dependencySets>
<dependencySet>
<includes>
- <include>org.onap.policy.gui:gui-clamp:tar.gz:clamp-build:${project.version}</include>
+ <include>org.onap.policy.gui:gui-server:jar:${project.version}</include>
</includes>
- <outputFileNameMapping>gui-clamp-html.tar.gz</outputFileNameMapping>
+ <outputFileNameMapping>app.jar</outputFileNameMapping>
</dependencySet>
</dependencySets>
</inline>
@@ -151,10 +151,8 @@
<dependencies>
<dependency>
<groupId>org.onap.policy.gui</groupId>
- <artifactId>gui-clamp</artifactId>
+ <artifactId>gui-server</artifactId>
<version>${project.version}</version>
- <classifier>clamp-build</classifier>
- <type>tar.gz</type>
</dependency>
</dependencies>
</project>