Skip to content

Commit

Permalink
Fix for issue junit-team#487
Browse files Browse the repository at this point in the history
The wrong Harmcrest jar was used in the build.xml for generating the
javadoc.
  • Loading branch information
awulder committed Aug 18, 2012
1 parent 6a8215a commit b698037
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.xml
Expand Up @@ -29,6 +29,7 @@
<property name="javadocdir" location="${dist}/javadoc" />
<property name="javadoczip" location="${dist}-javadoc.zip" />
<property name="hamcrestlib" location="lib/hamcrest-core-1.3.jar" />
<property name="hamcrestlibsources" location="lib/hamcrest-core-1.3-sources.jar" />
<property name="hamcrestsrc" location="${dist}/temp.hamcrest.source" />

<property name="maven.deploy.goal" value="org.apache.maven.plugins:maven-gpg-plugin:1.1:sign-and-deploy-file" />
Expand Down Expand Up @@ -125,7 +126,7 @@
</target>

<target name="unjar.hamcrest">
<unjar src="${hamcrestlib}" dest="${hamcrestsrc}" />
<unjar src="${hamcrestlibsources}" dest="${hamcrestsrc}" />
</target>

<target name="release-notes">
Expand Down

0 comments on commit b698037

Please sign in to comment.