0

buildJdtProject タスクを使用して、Ant4Eclipse で一部のフォルダーまたはファイルをコンパイルから除外できるかどうかを知りたいです。

<buildJdtProject workspaceId="myWorkspace" projectName="@{projectName}" targetLevel="1.6" />

よろしくお願いします、

フロラン

4

1 に答える 1

1

ワークスペース定義を使用して、そこにあるフォルダーを除外します。

<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>
于 2012-05-15T14:40:47.347 に答える