aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-feed-client-cli/src/maven/create-zip.xml
blob: 0e91323d80def89ca5207151d24e33d2755d5952 (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 Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.1"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.1 https://maven.apache.org/xsd/assembly-2.1.1.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>