Skip to content

Commit

Permalink
LPS-69899 Actually fix compile. Problem was we never called clean on …
Browse files Browse the repository at this point in the history
…any marked .lfrbuild-portal-pre modules, since we compile these before everything it makes sense to clean them before everything as well.
  • Loading branch information
Preston-Crary authored and brianchandotcom committed Jan 26, 2017
1 parent b26f569 commit 08acc62
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 0 additions & 1 deletion build-common-java.xml
Expand Up @@ -15,7 +15,6 @@
<delete dir="test-classes" />
<delete dir="test-coverage" />
<delete dir="test-results" />
<delete dir="tmp" />
<delete dir="woven-classes" />
<delete dir="${doc.dir}/${ant.project.name}/javadocs" />
<delete failonerror="false" file="${deploy.dir}/${jar.file}.jar" />
Expand Down
5 changes: 5 additions & 0 deletions build.xml
Expand Up @@ -51,6 +51,11 @@
</target>

<target name="clean">
<gradle-execute dir="modules" task="clean">
<arg value="--parallel" />
<arg value="-Dbuild.profile=portal-pre" />
</gradle-execute>

<parallel failonany="true" threadcount="${parallel.thread.count}">
<ant dir="benchmarks" inheritAll="false" target="clean" />

Expand Down

0 comments on commit 08acc62

Please sign in to comment.