Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
eclipse-archived/ceylon#6169 (NoClassDefFoundError for remote reposit…
Browse files Browse the repository at this point in the history
…ory):

Ignore local artifacts when building with tycho, to make the Build more
independent from locally installed artifacts (mainly previous versions).
  • Loading branch information
davidfestal committed Apr 13, 2016
1 parent 66d2dd1 commit 79b977e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@
<echo>${ceylon.ant.lib}</echo>
<exec executable="mvn${batExt}" dir="${basedir}" failonerror="true">
<arg value="clean" />
<arg value="install" />
<arg value="-DskipTests" />
<arg value="install" />
<arg value="-Dtycho.localArtifacts=ignore" />
<arg value="-DskipTests" />
<arg value="-Dbuild-against=${build-against}"/>
<arg value="-Dceylon.executable=${ceylon.executable}" />
<arg value="-Dceylon.ant.lib=${ceylon.ant.lib}"/>
Expand Down

0 comments on commit 79b977e

Please sign in to comment.