Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Jakarta-jmeter Wiki" 
for change notification.

The following page has been changed by Mikko Ohtamaa:
http://wiki.apache.org/jakarta-jmeter/BuildingPlugInWithEclipse

------------------------------------------------------------------------------
                * src/htmlparser
                * src/jorphan
                * src/junit
-               * src/reports
+               * src/reports            
     * Exclude following files from building 
              * They have missing dependencies and are related to HTTP security 
which you are not probably interested in 
              * org/apache/jmeter/util/JsseSSLManager.java
@@ -36, +36 @@

              * All jar files under lib/ folder
     * Now Eclipse should build JMeter without errors (stop icons in source 
tree)
  
+ 3. Set up your custom plug-in project
+    * Create a new Java project
+    * Add jmeter-trunk to project dependencies
+    * Create bin/ and src/ folders
+    * Create "jmeter.properties" in the bin/
+       * This defines where JMeter internal class loader looks for classes
+       * It should look like this
+ 
+ ----
+ search_paths=../../jmeter-trunk/bin/protocol/ftp; \
+                        ../../jmeter-trunk/bin/protocol/http; \
+                        ../../jmeter-trunk/bin/protocol/java; \
+                        ../../jmeter-trunk/bin/protocol/jdbc; \
+                        ../../jmeter-trunk/bin/protocol/ldap; \
+                        ../../jmeter-trunk/bin/protocol/tcp; \
+                        ../../jmeter-trunk/bin/components; \
+                        ../../jmeter-trunk/bin/core; \
+                        ../../jmeter-trunk/bin/default; \
+                        ../../jmeter-trunk/bin/functions; \
+                        ../../jmeter-trunk/bin/htmlparser; \
+                        ../../jmeter-trunk/bin/jorphan \
+                        .
+ 
+ ----
+ 
+ 4. Setting up a custom Jakarta launcher
+    * Set working directory to bin/ in your project
+    * Copy lib/ from jmeter-trunk to your plug-in project root
+ 
+ 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to