git_sitools_idoc / flarecast / workspace / fr.cnes.sitools.ext.test / build.xml @ master
| 1 | d2a8c3fd | Marc NICOLAS | <!-- ===================================
|
|---|---|---|---|
| 2 | == Copyright 2010-2014 CNES - CENTRE NATIONAL d'ETUDES SPATIALES
|
||
| 3 | ==
|
||
| 4 | == This file is part of SITools2.
|
||
| 5 | ==
|
||
| 6 | == SITools2 is free software: you can redistribute it and/or modify
|
||
| 7 | == it under the terms of the GNU General Public License as published by
|
||
| 8 | == the Free Software Foundation, either version 3 of the License, or
|
||
| 9 | == (at your option) any later version.
|
||
| 10 | ==
|
||
| 11 | == SITools2 is distributed in the hope that it will be useful,
|
||
| 12 | == but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
| 13 | == MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
| 14 | == GNU General Public License for more details.
|
||
| 15 | ==
|
||
| 16 | == You should have received a copy of the GNU General Public License
|
||
| 17 | == along with SITools2. If not, see <http://www.gnu.org/licenses/>.
|
||
| 18 | ==================================== -->
|
||
| 19 | <!DOCTYPE project [
|
||
| 20 | <!ENTITY struct SYSTEM "build/struct.xml">
|
||
| 21 | <!ENTITY taskdef SYSTEM "build/taskdef.xml">
|
||
| 22 | <!ENTITY targets SYSTEM "build/targets.xml">
|
||
| 23 | ]>
|
||
| 24 | <project name="fr.cnes.sitools.ext.test" default="build-extensions" basedir="."> |
||
| 25 | |||
| 26 | <!-- Import des properties -->
|
||
| 27 | &struct;
|
||
| 28 | <!-- Import des tasks -->
|
||
| 29 | &taskdef;
|
||
| 30 | <!-- Import des targets -->
|
||
| 31 | &targets;
|
||
| 32 | |||
| 33 | <target name="build-extensions" depends="init, clean, prepare, prepare-extensions,compile-extensions,jar-extensions,cleanup-extensions" /> |
||
| 34 | |||
| 35 | <target name="execute-tests-ext" depends="test-init, test-compile, test" /> |
||
| 36 | |||
| 37 | <target name="javadoc-project" description="Generation du ZIP contenant la javadoc du projet" depends="init, clean, prepare, javadoc, javadoc-tests" /> |
||
| 38 | |||
| 39 | |||
| 40 | </project>
|