Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4b319925adf573a607dc6e7884692c92d71ac048 (plain) (blame)
1
2
3
4
5
6
7
8
9
<?xml version="1.0" encoding="UTF-8"?>
<project default="export" basedir="." name="org.eclipse.etrice.feature">
	<target name="export">
		<delete dir="./export" quiet="true" />
		<mkdir dir="./export" />
		<!-- is asynchronous and requires eclipse UI, thus cannot be integrated in other ant jobs (https://bugs.eclipse.org/bugs/show_bug.cgi?id=58413) -->
		<pde.exportFeatures destination="./export" useworkspacecompiledclasses="true" exportSource="false" exportType="directory" features="org.eclipse.etrice.feature" useJARFormat="true" />
	</target>
</project>

Back to the top