Use maven properties to specify project's name and current version
[smart-dao.git] / src / main / assembly / assemble-gh-pages.xml
blob56a9983f7858253bbc3fe420ff5e3f7966af5e4a
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  *   
4  * This is a common dao with basic CRUD operations and is not limited to any 
5  * persistent layer implementation
6  * 
7  * Copyright (C) 2008  Imran M Yousuf (imyousuf@smartitengineering.com)
8  * 
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 3 of the License, or (at your option) any later version.
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
20 -->
22 <assembly>
23     <id>gh-pages</id>
24     <formats>
25         <format>dir</format>
26     </formats>
27     <fileSets>
28         <!-- Copies the change related files -->
29         <fileSet>
30             <directory>gh-pages/</directory>
31             <includes>
32                 <include>**/*</include>
33             </includes>
34             <outputDirectory>/</outputDirectory>
35             <filtered>true</filtered>
36         </fileSet>
37         <fileSet>
38             <directory>target/generated-resources/xml/xslt/</directory>
39             <includes>
40                 <include>changes-${project.version}.html</include>
41             </includes>
42             <outputDirectory>/changes/</outputDirectory>
43         </fileSet>
44     </fileSets>
45 </assembly>