This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "ESAPI-Building"

From OWASP
Jump to: navigation, search
(New page: ==Eclipse Setup== * Get Europa * Get SVN plugin * Get other plugins ==Subversion Setup== * https://owasp-esapi-java.googlecode.com/svn/ * checkout trunk * checkout testapp ==Project Se...)
 
m (Change references from using svn and Google Code to git and GitHub.)
 
(85 intermediate revisions by 8 users not shown)
Line 1: Line 1:
==Eclipse Setup==
+
ESAPI is easy to build yourself using [https://git-scm.com/ Git] and [http://maven.apache.org/ Maven]. Ensure that you are using UTF-8 for all source code.
  
* Get Europa
+
  $ git clone https://github.com/ESAPI/esapi-java-legacy.git    # This will clone the 'develop' branch.
* Get SVN plugin
+
  $ cd esapi-java-legacy
* Get other plugins
+
  $ mvn -Dmaven.test.skip=true package  # Build ESAPI
  
==Subversion Setup==
+
Maven will generate a "target" directory that contains the ESAPI jar file.
  
* https://owasp-esapi-java.googlecode.com/svn/
+
To generate project reports use:
* checkout trunk
 
* checkout testapp
 
  
==Project Setup==
+
  $ mvn site
  
* Set up JDK 1.4
+
To generate documentation use:
* Set Java 1.4 compliance in project
 
 
 
==Building==
 
 
 
* TODO: Need ant task to do the full dist
 
 
 
==Running Test Cases==
 
 
 
* Run As... Junit test - AllTests.java
 
* Set -Dorg.owasp.esapi.resources="<path to your esapi project>/test/testresources" in the run dialog
 
* run tests and verify that they all pass
 
 
 
 
 
 
 
==Running Test App==
 
  
 +
  $ mvn javadoc:jar
  
  

Latest revision as of 05:30, 9 February 2016

ESAPI is easy to build yourself using Git and Maven. Ensure that you are using UTF-8 for all source code.

 $ git clone https://github.com/ESAPI/esapi-java-legacy.git    # This will clone the 'develop' branch.
 $ cd esapi-java-legacy
 $ mvn -Dmaven.test.skip=true package  # Build ESAPI

Maven will generate a "target" directory that contains the ESAPI jar file.

To generate project reports use:

 $ mvn site

To generate documentation use:

 $ mvn javadoc:jar