Author: fschumacher
Date: Tue Mar 24 20:26:46 2015
New Revision: 1668984

URL: http://svn.apache.org/r1668984
Log:
* Markup changes. Use note block instead instead of font styling.
  Change pre to source and markup a few code fragments.
* Add reference to "ant -p" to see the possible ant targets.
* Add a link to the wiki (was already mentioned)

Modified:
    jmeter/trunk/xdocs/building.xml

Modified: jmeter/trunk/xdocs/building.xml
URL: 
http://svn.apache.org/viewvc/jmeter/trunk/xdocs/building.xml?rev=1668984&r1=1668983&r2=1668984&view=diff
==============================================================================
--- jmeter/trunk/xdocs/building.xml (original)
+++ jmeter/trunk/xdocs/building.xml Tue Mar 24 20:26:46 2015
@@ -21,55 +21,54 @@
   </properties>
 <body>
 <section name="Building JMeter and Add-Ons">
-<font color="red"><strong>
-Note to developers:
+<note>
+<b>Note to developers:</b>
 This is a very brief overview. 
-There is more infomation on the JMeter Wiki or in eclipse.readme in root 
folder of sources.
-</strong></font>
+There is more infomation on the <a href="http://wiki.apache.org/jmeter";>JMeter 
Wiki</a> or in <code>eclipse.readme</code> in root folder of sources.
+</note>
 <h2>Building Add-Ons</h2>
 <p>
 There is no need to build JMeter if you just want to build an add-on.
 Just download the binary archive and add the jars to the classpath or use 
Maven artifacts to build your add-ons.
 You may want to also download the source so it can be used by the IDE.
-
 </p>
-<p>See the extras/addons* files in the source tree for some suggestions</p>
+<p>See the <code>extras/addons*</code> files in the source tree for some 
suggestions</p>
 
 <h2>Building JMeter</h2>
 <h3>Acquiring the source</h3>
 <p>The full source is distributed alongside the binary, it can also be 
downloaded from SVN or found on <a target="_blank" 
href="https://github.com/apache/jmeter";>Apache JMeter Github Mirror</a> .</p>
 <p>
 The source archive and SVN do not contain any of the required library files. 
-These need to be downloaded by running the Ant command:
-<pre>
+These need to be downloaded by running the Ant command:</p>
+<source>
 ant download_jars
-</pre>
-</p>
+</source>
 <p>Or you can download the binary distribution archive for a release and 
unpack it into the same directory structure as the source.
-This will ensure that the lib/ directory contains the jar files needed for 
running JMeter.
+This will ensure that the <code>lib/</code> directory contains the jar files 
needed for running JMeter.
 There are a few additional jars that are needed to build JMeter, download 
these using:
-<pre>
+</p>
+<source>
 ant download_jars
-</pre>
+</source>
+<p>
 This will retrieve any missing jars.
 </p>
 <h3>Compiling and packaging JMeter using Ant</h3>
 <p>
 JMeter can be built entirely using Ant.
-The basic command is:
-<pre>
+The basic command is:</p>
+<source>
 ant [install]
-</pre>
-See build.xml for the other targets that can be used.
-</p>
+</source>
+See build.xml (or call <code>ant -p</code>) for the other targets that can be 
used.
 <h3>Compiling and packaging JMeter using Eclipse</h3>
 <p>
-Once you have downloaded the source from SVN or the release archives and run 
the ant download_jars target to
-install the dependent jars, you can configure Eclipse. The easiest way to do 
this is to replace the Eclipse .classpath
-file with the eclipse.classpath file provided with JMeter. This will set up 
the source-paths and most of the libraries.
-<p>
-Ensure your read eclipse.readme for project configuration.
+Once you have downloaded the source from SVN or the release archives and run 
the ant <code>download_jars</code> target to
+install the dependent jars, you can configure Eclipse. The easiest way to do 
this is to replace the Eclipse <code>.classpath</code>
+file with the <code>eclipse.classpath</code> file provided with JMeter. This 
will set up the source-paths and most of the libraries.
 </p>
+<p>
+Ensure your read <code>eclipse.readme</code> for project configuration.
 </p>
 </section>
 </body>


Reply via email to