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
m
m (Change references from using svn and Google Code to git and GitHub.)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
ESAPI is easy to build yourself using [http://subversion.tigris.org/ Subversion] and [http://maven.apache.org/ Maven]. Ensure that you are using UTF-8 for all source code.
+
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.
  
   $ svn checkout http://owasp-esapi-java.googlecode.com/svn/trunk ESAPI
+
   $ git clone https://github.com/ESAPI/esapi-java-legacy.git    # This will clone the 'develop' branch.
  $ cd ESAPI
+
   $ cd esapi-java-legacy
  $ wget http://owaspantisamy.googlecode.com/files/antisamy-bin.1.3.jar
 
   $ mvn install:install-file -DgroupId=OWASP -DartifactId=AntiSamy -Dversion=1.3 -Dpackaging=jar -Dfile=antisamy-bin.1.3.jar
 
  $ rm antisamy-bin.1.3.jar            # Cleanup after Maven copies to repository.
 
 
   $ mvn -Dmaven.test.skip=true package  # Build ESAPI
 
   $ mvn -Dmaven.test.skip=true package  # Build ESAPI
  

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