mirror of https://github.com/apache/jmeter.git
ant download_jars task fails if lib/api or lib/doc are missing
Bugzilla Id: 55405 git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1513969 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7b1604abe5
commit
4523f8f5af
|
|
@ -2921,6 +2921,9 @@ run JMeter unless all the JMeter jars are added.
|
|||
<target name="download_jars" description="Download any missing jar files">
|
||||
<!-- build.dir may be needed as a temporary work area -->
|
||||
<mkdir dir="${build.dir}" />
|
||||
<!-- The directories must exist otherwise the build fails when deleting previous versions -->
|
||||
<mkdir dir="${lib.api}" />
|
||||
<mkdir dir="${lib.doc}" />
|
||||
<antcall target="_process_all_jars">
|
||||
<param name="_get_file" value="true"/>
|
||||
</antcall>
|
||||
|
|
|
|||
|
|
@ -295,6 +295,7 @@ Previously the default was 1, which could cause unexpected additional traffic.
|
|||
<li><bugzilla>55064</bugzilla> - Useless processing in ReportTreeListener.isValidDragAction(). Contributed by Adrian Nistor (nistor1 at illinois.edu)</li>
|
||||
<li><bugzilla>55242</bugzilla> - BeanShell Client jar throws exceptions after upgrading to 2.8.</li>
|
||||
<li><bugzilla>55288</bugzilla> - JMeter should default to 0 retries for HTTP requests.</li>
|
||||
<li><bugzilla>55405</bugzilla> - ant download_jars task fails if lib/api or lib/doc are missing. Contributed by Antonio Gomes Rodrigues.</li>
|
||||
</ul>
|
||||
|
||||
<!-- =================== Improvements =================== -->
|
||||
|
|
|
|||
Loading…
Reference in New Issue