forked from cantaloupe-project/cantaloupe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
assembly.xml
65 lines (65 loc) · 2.13 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
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
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="utf-8"?>
<!--
Configures the Maven Assembly plugin.
http://maven.apache.org/plugins/maven-assembly-plugin/assembly.html
-->
<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>release</id>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>dist</directory>
<outputDirectory>.</outputDirectory>
</fileSet>
<fileSet>
<directory>target</directory>
<includes>
<include>cantaloupe-${project.version}.jar</include>
</includes>
<outputDirectory>.</outputDirectory>
</fileSet>
</fileSets>
<files>
<file>
<source>cantaloupe.properties.sample</source>
<destName>cantaloupe.properties.sample</destName>
<fileMode>0644</fileMode>
<lineEnding>crlf</lineEnding>
</file>
<file>
<source>delegates.rb.sample</source>
<destName>delegates.rb.sample</destName>
<fileMode>0644</fileMode>
<lineEnding>crlf</lineEnding>
</file>
<file>
<source>CHANGES.md</source>
<fileMode>0644</fileMode>
<lineEnding>crlf</lineEnding>
</file>
<file>
<source>LICENSE.txt</source>
<fileMode>0644</fileMode>
<lineEnding>crlf</lineEnding>
</file>
<file>
<source>LICENSE-3RD-PARTY.txt</source>
<fileMode>0644</fileMode>
<lineEnding>crlf</lineEnding>
</file>
<file>
<source>README.md</source>
<fileMode>0644</fileMode>
<lineEnding>crlf</lineEnding>
</file>
<file>
<source>UPGRADING.md</source>
<fileMode>0644</fileMode>
<lineEnding>crlf</lineEnding>
</file>
</files>
</assembly>