-
Notifications
You must be signed in to change notification settings - Fork 2
/
assembly-src.xml
57 lines (52 loc) · 2.58 KB
/
assembly-src.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- $Id: assembly-src.xml 340 2015-08-16 14:51:19Z sasha $ -->
<!--
Copyright (C) 2008 by Bundesamt für Justiz, Fachstelle für Rechtsinformatik
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-->
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Author: Alexander Nikiforov -->
<!-- Revised: $Author: sasha $ -->
<!-- Version: $Revision: 340 $ -->
<!-- assembly for the source distribution -->
<id>src</id>
<formats>
<format>zip</format>
<format>tar.gz</format>
</formats>
<fileSets>
<fileSet>
<directory>src/distribution</directory>
<includes>
<include>bin/*</include>
<include>conf/*</include>
<include>conf/**</include>
<include>lib/*</include>
<include>lib/**</include>
<include>lib/native/*</include>
<include>log</include>
<include>README</include>
<include>LICENSE</include>
<include>RELEASE-NOTES</include>
</includes>
<excludes>
<exclude>*.zip</exclude>
<exclude>*.tar.gz</exclude>
</excludes>
<outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>
</assembly>