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

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

files INSTALL, UPDATED, CHANGES and README are added. Dasish schem-location parameter is moved from context.xml to web.xml

File size: 2.0 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       
46        <fileSet>           
47            <directory>target</directory>
48            <outputDirectory>war</outputDirectory>
49            <includes>
50                <include>*.war</include>
51            </includes>
52            <fileMode>0644</fileMode>
53            <directoryMode>0755</directoryMode>
54        </fileSet>
55
56           
57    </fileSets>             
58</assembly>
Note: See TracBrowser for help on using the repository browser.