1
+ <!--
2
+ ~ Licensed to the Apache Software Foundation (ASF) under one or more
3
+ ~ contributor license agreements. See the NOTICE file distributed with
4
+ ~ this work for additional information regarding copyright ownership.
5
+ ~ The ASF licenses this file to You under the Apache License, Version 2.0
6
+ ~ (the "License"); you may not use this file except in compliance with
7
+ ~ the License. You may obtain a copy of the License at
8
+ ~
9
+ ~ http://www.apache.org/licenses/LICENSE-2.0
10
+ ~
11
+ ~ Unless required by applicable law or agreed to in writing, software
12
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
13
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ ~ See the License for the specific language governing permissions and
15
+ ~ limitations under the License.
16
+ -->
17
+
18
+ <assembly
19
+ xmlns =" http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
20
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
21
+ xsi : schemaLocation =" http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd" >
22
+ <id >dist</id >
23
+ <formats >
24
+ <format >tar.gz</format >
25
+ <format >zip</format >
26
+ <format >dir</format >
27
+ </formats >
28
+ <files >
29
+ <file >
30
+ <source >${project.build.directory}/${project.artifactId}-${project.version}-runner${executable-suffix}</source >
31
+ <outputDirectory >./bin</outputDirectory >
32
+ <destName >${project.artifactId}${executable-suffix}</destName >
33
+ </file >
34
+ <fileSet >
35
+ <directory >${project.basedir}</directory >
36
+ <outputDirectory >/</outputDirectory >
37
+ <includes >
38
+ <include >README.md</include >
39
+ <include >LICENSE</include >
40
+ </includes >
41
+ </fileSet >
42
+ </files >
43
+ </assembly >
0 commit comments