Commits
sk89q authored b5c4eb3587f
1 - | |
2 - | <!-- |
3 - | ~ WorldGuard, a suite of tools for Minecraft |
4 - | ~ Copyright (C) sk89q <http://www.sk89q.com> |
5 - | ~ Copyright (C) WorldGuard team and contributors |
6 - | ~ |
7 - | ~ This program is free software: you can redistribute it and/or modify it |
8 - | ~ under the terms of the GNU Lesser General Public License as published by the |
9 - | ~ Free Software Foundation, either version 3 of the License, or |
10 - | ~ (at your option) any later version. |
11 - | ~ |
12 - | ~ This program is distributed in the hope that it will be useful, but WITHOUT |
13 - | ~ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
14 - | ~ FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License |
15 - | ~ for more details. |
16 - | ~ |
17 - | ~ You should have received a copy of the GNU Lesser General Public License |
18 - | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 - | --> |
20 - | |
21 - | <assembly |
22 - | xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" |
23 - | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
24 - | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> |
25 - | <includeBaseDirectory>false</includeBaseDirectory> |
26 - | <formats> |
27 - | <format>tar.gz</format> |
28 - | <format>tar.bz2</format> |
29 - | <format>zip</format> |
30 - | </formats> |
31 - | <files> |
32 - | <file> |
33 - | <source>${project.build.directory}/${artifactId}-${project.version}.jar</source> |
34 - | <outputDirectory>/</outputDirectory> |
35 - | <filtered>false</filtered> |
36 - | </file> |
37 - | <file> |
38 - | <source>${project.build.directory}/CHANGELOG.html</source> |
39 - | <outputDirectory>/</outputDirectory> |
40 - | <filtered>true</filtered> |
41 - | </file> |
42 - | <file> |
43 - | <source>${project.build.directory}/INSTALL.html</source> |
44 - | <destName>README.html</destName> |
45 - | <outputDirectory>/</outputDirectory> |
46 - | <filtered>true</filtered> |
47 - | </file> |
48 - | <file> |
49 - | <source>${project.build.directory}/UPGRADE.html</source> |
50 - | <destName>READ_BEFORE_UPGRADING_FROM_V5.html</destName> |
51 - | <outputDirectory>/</outputDirectory> |
52 - | <filtered>true</filtered> |
53 - | </file> |
54 - | </files> |
55 - | <fileSets> |
56 - | <fileSet> |
57 - | <includes> |
58 - | <include>contrib/blacklist_table.sql</include> |
59 - | <include>contrib/region_manual_update_20110325.sql</include> |
60 - | </includes> |
61 - | </fileSet> |
62 - | </fileSets> |
1 + | |
2 + | <!-- |
3 + | ~ WorldGuard, a suite of tools for Minecraft |
4 + | ~ Copyright (C) sk89q <http://www.sk89q.com> |
5 + | ~ Copyright (C) WorldGuard team and contributors |
6 + | ~ |
7 + | ~ This program is free software: you can redistribute it and/or modify it |
8 + | ~ under the terms of the GNU Lesser General Public License as published by the |
9 + | ~ Free Software Foundation, either version 3 of the License, or |
10 + | ~ (at your option) any later version. |
11 + | ~ |
12 + | ~ This program is distributed in the hope that it will be useful, but WITHOUT |
13 + | ~ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
14 + | ~ FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License |
15 + | ~ for more details. |
16 + | ~ |
17 + | ~ You should have received a copy of the GNU Lesser General Public License |
18 + | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 + | --> |
20 + | |
21 + | <assembly |
22 + | xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" |
23 + | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
24 + | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> |
25 + | <includeBaseDirectory>false</includeBaseDirectory> |
26 + | <formats> |
27 + | <format>tar.gz</format> |
28 + | <format>tar.bz2</format> |
29 + | <format>zip</format> |
30 + | </formats> |
31 + | <files> |
32 + | <file> |
33 + | <source>${project.build.directory}/${artifactId}-${project.version}.jar</source> |
34 + | <outputDirectory>/</outputDirectory> |
35 + | <filtered>false</filtered> |
36 + | </file> |
37 + | <file> |
38 + | <source>${project.build.directory}/CHANGELOG.html</source> |
39 + | <outputDirectory>/</outputDirectory> |
40 + | <filtered>true</filtered> |
41 + | </file> |
42 + | <file> |
43 + | <source>${project.build.directory}/INSTALL.html</source> |
44 + | <destName>README.html</destName> |
45 + | <outputDirectory>/</outputDirectory> |
46 + | <filtered>true</filtered> |
47 + | </file> |
48 + | <file> |
49 + | <source>${project.build.directory}/UPGRADE.html</source> |
50 + | <destName>READ_BEFORE_UPGRADING_FROM_V5.html</destName> |
51 + | <outputDirectory>/</outputDirectory> |
52 + | <filtered>true</filtered> |
53 + | </file> |
54 + | </files> |
55 + | <fileSets> |
56 + | <fileSet> |
57 + | <includes> |
58 + | <include>contrib/blacklist_table.sql</include> |
59 + | <include>contrib/region_manual_update_20110325.sql</include> |
60 + | </includes> |
61 + | </fileSet> |
62 + | </fileSets> |
63 63 | </assembly> |