blob: e1d3f16fc7eb821de8305618812a3710992b436a [file] [log] [blame]
<!--
Copyright (c) 2010 Mia-Software.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Gabriel Barbier (Mia-Software) - initial API and implementation
-->
<project name="Test" default="launchVisualizationsBuilding">
<target name="launchVisualizationsBuilding">
<!-- Generate the Excel visualizations from the Metrics model -->
<ant dir="${basedir}/../org.eclipse.gmt.modisco.tool.metricsvisualizationbuilder"
antfile="build-Excel.xml">
<property name="metricsName" value="Bugs_GMT-Metrics"/>
<property name="metricsModelPath" value="/org.eclipse.gmt.modisco.usecase.bugzillametrics/Outputs/Metrics/Bugs_GMT-Metrics.xmi"/>
<property name="outputFilesDirectoryPath" value="/org.eclipse.gmt.modisco.usecase.bugzillametrics/Outputs"/>
</ant>
<!-- Generate the HTML visualizations from the Metrics model -->
<ant dir="${basedir}/../org.eclipse.gmt.modisco.tool.metricsvisualizationbuilder"
antfile="build-HTML.xml">
<property name="metricsName" value="Bugs_GMT-Metrics"/>
<property name="metricsModelPath" value="/org.eclipse.gmt.modisco.usecase.bugzillametrics/Outputs/Metrics/Bugs_GMT-Metrics.xmi"/>
<property name="outputFilesDirectoryPath" value="/org.eclipse.gmt.modisco.usecase.bugzillametrics/Outputs"/>
</ant>
<!-- Generate the SVG Bar Chart visualizations from the Metrics model -->
<ant dir="${basedir}/../org.eclipse.gmt.modisco.tool.metricsvisualizationbuilder"
antfile="build-SVGBarChart.xml">
<property name="metricsName" value="Bugs_GMT-Metrics"/>
<property name="metricsModelPath" value="/org.eclipse.gmt.modisco.usecase.bugzillametrics/Outputs/Metrics/Bugs_GMT-Metrics.xmi"/>
<property name="outputFilesDirectoryPath" value="/org.eclipse.gmt.modisco.usecase.bugzillametrics/Outputs"/>
</ant>
<!-- Generate the SVG Pie Chart visualizations from the Metrics model -->
<ant dir="${basedir}/../org.eclipse.gmt.modisco.tool.metricsvisualizationbuilder"
antfile="build-SVGPieChart.xml">
<property name="metricsName" value="Bugs_GMT-Metrics"/>
<property name="metricsModelPath" value="/org.eclipse.gmt.modisco.usecase.bugzillametrics/Outputs/Metrics/Bugs_GMT-Metrics.xmi"/>
<property name="outputFilesDirectoryPath" value="/org.eclipse.gmt.modisco.usecase.bugzillametrics/Outputs"/>
</ant>
</target>
</project>