我想知道 Ant4Eclipse 是否可以使用 buildJdtProject 任务从编译中排除某些文件夹或文件。
<buildJdtProject workspaceId="myWorkspace" projectName="@{projectName}" targetLevel="1.6" />
最好的祝福,
弗洛朗
我想知道 Ant4Eclipse 是否可以使用 buildJdtProject 任务从编译中排除某些文件夹或文件。
<buildJdtProject workspaceId="myWorkspace" projectName="@{projectName}" targetLevel="1.6" />
最好的祝福,
弗洛朗
使用工作区定义并在那里排除您的文件夹。
<dirset dir="${eclipse.workspace.dir}" id="workspacedirset">
<!-- exclude your directory-->
<exclude name="EXCLUDEME"/>
<!-- include all others -->
<include name="**"/>
</dirset>
<ant4eclipse:workspaceDefinition id="myworkspace">
<dirset refid="worspacedirset"/>
</ant4eclipse:workspaceDefinition>