You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2016/11/14 18:10:44 UTC

svn commit: r1769671 - /jmeter/trunk/eclipse.md

Author: fschumacher
Date: Mon Nov 14 18:10:44 2016
New Revision: 1769671

URL: http://svn.apache.org/viewvc?rev=1769671&view=rev
Log:
Whitespace police.

Modified:
    jmeter/trunk/eclipse.md

Modified: jmeter/trunk/eclipse.md
URL: http://svn.apache.org/viewvc/jmeter/trunk/eclipse.md?rev=1769671&r1=1769670&r2=1769671&view=diff
==============================================================================
--- jmeter/trunk/eclipse.md (original)
+++ jmeter/trunk/eclipse.md Mon Nov 14 18:10:44 2016
@@ -6,7 +6,7 @@
 The following files should be excluded from build output:
 
 > `*.metaprops`
- 
+
 See `Project Preferences/Java Compiler/Building/Output Folder/Filtered Resources`
 
 
@@ -14,13 +14,13 @@ See `Project Preferences/Java Compiler/B
 
 **This has been tested with Eclipse 3.2 up to 4.6.1. It may not work with other versions.**
 
-The file `eclipse.classpath` is intended as a starter `.classpath` file 
-for building JMeter using Eclipse version 3 to 4.6.  
+The file `eclipse.classpath` is intended as a starter `.classpath` file
+for building JMeter using Eclipse version 3 to 4.6.
 
 Make sure to execute the `ant download_jars` task to download and install the jars referred
-to in the classpath before creating the Eclipse project. 
+to in the classpath before creating the Eclipse project.
 
-If you do after creating project, then don't forget to refresh Eclipse project. 
+If you do after creating project, then don't forget to refresh Eclipse project.
 
 Note that Eclipse is not easy to use for creating jar files.
 However, it is easy to use Eclipse to run Ant.
@@ -39,7 +39,7 @@ the `Windows->Show View->Ant View`. Then
 drag and drop to the `Ant View`.
 Now you can invoke targets by clicking on them.
 Note that if you invoke for example the `compile` target, and get error
-messages about 
+messages about
 
 
 > Unable to find a javac compiler;
@@ -53,14 +53,14 @@ The suggested fix is to add a JDK in `Wi
 Then do a `Project->Properties` and select `Java Build Path` in the left pane, and then
 select the `Libraries` tab in the right pane. Scroll to the bottom, select the `JRE System Library`,
 and click `Remove`. Then click `Add library...` , select `JRE System Library`, and then select
-the JDK. 
+the JDK.
 
 Now it should work when you invoke the `compile` target.
 
 
 ## Finishing the build using Ant
 
-Find the `build.xml` file in the project, 
+Find the `build.xml` file in the project,
 right click on it, and click `Run As --> Ant Build`.
 
 Make sure you select the `package` target.
@@ -85,12 +85,12 @@ Create a new Java Application launch con
 On the Main tab, enter the following as the main class:
 
 > `org.apache.jmeter.NewDriver`
-  
+
 On the Arguments tab, in the Working Directory area, pick the radio
 button next to `Other` and enter the following in the text box:
 
 > `${workspace_loc}/jmeter/bin`
-  
+
  where `jmeter` is the name of the JMeter project.
- 
+
  **It would be nicer to use `${project_loc}/bin` but unfortunately the Eclipse Debug view does not seem to preserve any of the project variables**