blob: 535ba054a9c83daa1a068fbde8debc33d94da67a [file] [log] [blame]
<?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="HTMLBootstrapGenDocumentSample" name="org.eclipse.mylyn.docs.intent.exporterSample">
<import file="../../org.eclipse.mylyn.docs.intent.exporter/tasks/HTMLBootstrapGenDocument.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="HTMLBootstrapGenDocumentSample" description="Generate files in 'TARGET'">
<antcall target="HTMLBootstrapGenDocument" >
<param name="model" value="${MODEL}"/>
<param name="target" value="${TARGET}"/>
</antcall>
</target>
</project>