Project

General

Profile

Download (1.29 KB) Statistics
| Branch: | Revision:

git_sitools_idoc / flarecast / workspace / client-portal-3.0 / build.xml @ master

1
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- =================================== == Copyright 2010-2014 CNES - CENTRE 
3
    NATIONAL d'ETUDES SPATIALES == == This file is part of SITools2. == == SITools2 
4
    is free software: you can redistribute it and/or modify == it under the terms 
5
    of the GNU General Public License as published by == the Free Software Foundation, 
6
    either version 3 of the License, or == (at your option) any later version. 
7
    == == SITools2 is distributed in the hope that it will be useful, == but 
8
    WITHOUT ANY WARRANTY; without even the implied warranty of == MERCHANTABILITY 
9
    or FITNESS FOR A PARTICULAR PURPOSE. See the == GNU General Public License 
10
    for more details. == == You should have received a copy of the GNU General 
11
    Public License == along with SITools2. If not, see <http://www.gnu.org/licenses/>. 
12
    ==================================== -->
13
<project name="fr.cnes.sitools.client-portal" basedir="." default="js.minify">
14
        <target name="js.minify">
15
        <exec executable="conf/scripts/minifyjs.bat" osfamily="windows" failonerror="true">
16
            <arg value="."/>
17
        </exec>
18
        
19
        <exec executable="conf/scripts/minifyjs.sh" osfamily="unix" failonerror="true">
20
            <arg value="."/>
21
        </exec>
22
    </target>
23

    
24
</project>