projet-mini-genie-logiciel-.../eclipse-workspace/fr.n7.simplepdl.toHTML/tasks/toHTMLTarget.xml

20 lines
777 B
XML
Raw Normal View History

2021-10-09 20:04:54 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<!-- Place this file in the target project and call it with "External Tools > Run As > Ant Build" -->
<!-- You have to change the MODEL and the TARGET values -->
<project basedir="." default="toHTMLSample" name="fr.n7.simplepdl.toHTMLSample">
<import file="../../fr.n7.simplepdl.toHTML/tasks/toHTML.xml"/>
<!-- Change the values of MODEL and TARGET to point to your model and output folder -->
<property name="MODEL" value="${basedir}/model/file.xmi"/>
<property name="TARGET" value="${basedir}/src-gen"/>
<target name="toHTMLSample" description="Generate files in 'TARGET'">
<antcall target="toHTML" >
<param name="model" value="${MODEL}"/>
<param name="target" value="${TARGET}"/>
</antcall>
</target>
</project>