-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
.assembly.xml
30 lines (30 loc) · 1.05 KB
/
.assembly.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (C) 2019-2023 Julian Valentin, LTeX Development Community
-
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at https://mozilla.org/MPL/2.0/.
-->
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 https://maven.apache.org/xsd/assembly-2.1.0.xsd">
<id>distribution</id>
<formats>
<format>tar.gz</format>
</formats>
<fileSets>
<fileSet>
<directory>${basedir}/target/appassembler</directory>
<outputDirectory/>
</fileSet>
<fileSet>
<directory>${basedir}</directory>
<includes>
<include>ACKNOWLEDGMENTS.md</include>
<include>changelog.xml</include>
<include>LICENSE.md</include>
<include>README.md</include>
</includes>
<outputDirectory/>
</fileSet>
</fileSets>
</assembly>