apache / jmeter

Apache JMeter open-source load testing tool for analyzing and measuring the performance of a variety of services
https://jmeter.apache.org/
Apache License 2.0
8.37k stars 2.1k forks source link

[patch] Javadoc JMeter API version updated to 1.9 #1129

Closed asfimport closed 21 years ago

asfimport commented 21 years ago

tjsb (Bug 20780): The api-docs target in build.xml supplies a version of 1.7 to javadoc, which is no longer current.

The following patch defines a "docversion" property (set to 1.9) which is used by the javadoc command. The new property is defined near the existing "version" property to make it easier to keep them in step.

The patch also updates the JDK version to 1.3, and spreads the javadoc attributes over multiple lines to make them easier to read.

Severity: normal OS: other

asfimport commented 21 years ago

tjsb (migrated from Bugzilla): Created attachment buildxml_api.patch: Patch build.xml: change API and JDK versions in Javadoc

buildxml_api.patch ````diff Index: build.xml =================================================================== RCS file: /home/cvspublic/jakarta-jmeter/build.xml,v retrieving revision 1.102 diff -u -r1.102 build.xml --- build.xml 13 Jun 2003 16:29:40 -0000 1.102 +++ build.xml 14 Jun 2003 23:22:30 -0000 @@ -26,6 +26,7 @@ + @@ -123,6 +124,9 @@ + + + @@ -310,9 +314,16 @@ - + - + ````