aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-designer-be/src/main/resources/assembly.xml
blob: f8b802c46ab5b5fcc9af2b30727257d9447ebe1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<assembly
        xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd">
    <id>sdc-wfd-be-files</id>
    <includeBaseDirectory>false</includeBaseDirectory>
    <fileSets>
        <fileSet>
            <includes>
                <include>${project.build.finalName}.jar</include>
            </includes>
            <directory>${project.build.directory}</directory>
            <outputDirectory>/</outputDirectory>
        </fileSet>
        <fileSet>
            <includes>
                <include>org.onap.sdc.p12</include>
            </includes>
            <directory>${project.basedir}/../workflow-designer-ui/docker</directory>
            <outputDirectory>/etc/server-https-keystore</outputDirectory>
        </fileSet>
    </fileSets>
</assembly>