buildJdtProject タスクを使用して、Ant4Eclipse で一部のフォルダーまたはファイルをコンパイルから除外できるかどうかを知りたいです。
<buildJdtProject workspaceId="myWorkspace" projectName="@{projectName}" targetLevel="1.6" />
よろしくお願いします、
フロラン
buildJdtProject タスクを使用して、Ant4Eclipse で一部のフォルダーまたはファイルをコンパイルから除外できるかどうかを知りたいです。
<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>