Skip to content

Commit

Permalink
LPS-102797 Skip checking the binaries cache for the Ant clean task
Browse files Browse the repository at this point in the history
  • Loading branch information
petershin authored and brianchandotcom committed Oct 10, 2019
1 parent dc4f0d7 commit 11c5084
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.xml
Expand Up @@ -168,7 +168,7 @@ message.
</target>

<target name="clean">
<gradle-execute dir="modules" task="clean">
<gradle-execute dir="modules" setupbinariescache="false" task="clean">
<arg value="--parallel" />
<arg value="-Dbuild.profile=portal-pre" />
</gradle-execute>
Expand Down Expand Up @@ -196,9 +196,9 @@ message.
<sequential>
<delete dir="${sdk.dir}" />

<setup-sdk />
<setup-sdk setupbinariescache="false" />

<gradle-execute dir="${project.dir}/modules" task="clean">
<gradle-execute dir="${project.dir}/modules" setupbinariescache="false" task="clean">
<arg value="-Dbuild.exclude.dirs=${build.exclude.dirs}" />
<arg value="-Dbuild.include.dirs=${build.include.dirs}" />
<arg value="-Dbuild.profile=${build.profile}" />
Expand All @@ -207,7 +207,7 @@ message.
<if>
<available file="${project.dir}/modules/test/arquillian-extension-junit-bridge-test" type="dir" />
<then>
<gradle-execute dir="${project.dir}/modules" task=":test:arquillian-extension-junit-bridge-test:clean" />
<gradle-execute dir="${project.dir}/modules/test/arquillian-extension-junit-bridge-test" setupbinariescache="false" task="clean" />
</then>
</if>
</sequential>
Expand Down

0 comments on commit 11c5084

Please sign in to comment.