diff options
Diffstat (limited to 'src/main/docker/frontend/frontend-files.xml')
-rw-r--r-- | src/main/docker/frontend/frontend-files.xml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/main/docker/frontend/frontend-files.xml b/src/main/docker/frontend/frontend-files.xml index 2610e828..aaf32be8 100644 --- a/src/main/docker/frontend/frontend-files.xml +++ b/src/main/docker/frontend/frontend-files.xml @@ -17,7 +17,7 @@ limitations under the License. ============LICENSE_END========================================================= --> - + <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" @@ -35,8 +35,13 @@ <excludes> <exclude>node_modules</exclude> </excludes> - <directory>${project.basedir}/ui-react</directory> - <outputDirectory>/</outputDirectory> + <directory>${project.build.directory}/${ui.react.src}</directory> + <outputDirectory></outputDirectory> + </fileSet> + <!-- include ssl certificates files obtain from aaf p12 --> + <fileSet> + <directory>${project.basedir}/src/main/resources/clds/aaf/ssl</directory> + <outputDirectory>ssl</outputDirectory> </fileSet> </fileSets> |