Skip to content

Commit

Permalink
adds scala-reflect.jar to MIMA in ant
Browse files Browse the repository at this point in the history
  • Loading branch information
xeno-by committed Dec 16, 2012
1 parent a6f10cf commit 787e82f
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2659,6 +2659,7 @@ Binary compatibility testing
</artifact:dependencies>
<artifact:dependencies pathId="old.bc.classpath">
<dependency groupId="org.scala-lang" artifactId="scala-library" version="2.10.0-RC2"/>
<dependency groupId="org.scala-lang" artifactId="scala-reflect" version="2.10.0-RC2"/>
</artifact:dependencies>
</target>

Expand All @@ -2674,7 +2675,19 @@ Binary compatibility testing
<classpath>
<path refid="mima.classpath"/>
</classpath>
</java>
</java>
<java
fork="true"
failonerror="true"
classname="com.typesafe.tools.mima.cli.Main">
<arg value="--prev"/>
<arg value="${org.scala-lang:scala-reflect:jar}"/>
<arg value="--curr"/>
<arg value="${build-pack.dir}/lib/scala-reflect.jar"/>
<classpath>
<path refid="mima.classpath"/>
</classpath>
</java>
</target>


Expand Down

0 comments on commit 787e82f

Please sign in to comment.