aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-feed-client-cli/src/maven/create-zip.xml
blob: 45bbbea9f2d3137f709a74808749689a698ca27b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
    <id>zip</id>
    <includeBaseDirectory>true</includeBaseDirectory>

    <formats>
        <format>zip</format>
    </formats>
    <files>
        <file>
            <source>${project.build.directory}/${project.artifactId}-jar-with-dependencies.jar</source>
        </file>
        <file>
            <source>${project.basedir}/src/main/sh/vespa-feed-client-standalone.sh</source>
            <destName>vespa-feed-client</destName>
        </file>
        <file>
            <source>${project.basedir}/src/main/resources/logging.properties</source>
        </file>
    </files>
</assembly>