source: DASISH/t5.6/backend/annotator-backend/trunk/annotator-backend/src/main/assembly/deploymenttarball.xml @ 4210

Last change on this file since 4210 was 4210, checked in by olhsha, 10 years ago

compiling deployment-tarball.

File size: 2.2 KB
Line 
1<!--
2
3    Copyright (C) 2013 DASISH
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License
7    as published by the Free Software Foundation; either version 2
8    of the License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19-->
20
21<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
22    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23    xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
24   
25    <id>mpi-deploy</id>
26    <formats>
27        <format>tar.gz</format>
28    </formats>
29   
30    <fileSets>
31       
32       <!-- <fileSet>
33            <directory>${project.basedir}</directory>
34            <outputDirectory>/</outputDirectory>
35            <includes>
36                <include>UPDATE*</include>
37                <include>LICENSES*</include>
38                <include>README*</include>
39                <include>CHANGES*</include>
40                <include>INSTALL*</include>
41            </includes>
42            <fileMode>0644</fileMode>
43        </fileSet>
44       
45        <fileSet>           
46            <directory>${project.basedir}/DeploymentSettings</directory>
47            <outputDirectory>DeploymentSettings</outputDirectory>
48            <fileMode>0644</fileMode>
49            <directoryMode>0755</directoryMode>
50        </fileSet> -->
51               
52        <fileSet>           
53            <directory>target</directory>
54            <outputDirectory>war</outputDirectory>
55            <includes>
56                <include>*.war</include>
57            </includes>
58            <fileMode>0644</fileMode>
59            <directoryMode>0755</directoryMode>
60        </fileSet>
61
62           
63    </fileSets>             
64</assembly>
Note: See TracBrowser for help on using the repository browser.