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 (Added 'cd trunk' between two mvn steps to prevent maven error about 'Cannot execute mojo: ...'.)
(Changed directions so ESAPI code is checked out directly into 'ESAPI' directory with no extra 'trunk' directory.)
Line 1: Line 1:
 
ESAPI is easy to build yourself using [http://subversion.tigris.org/ Subversion] and [http://maven.apache.org/ Maven].
 
ESAPI is easy to build yourself using [http://subversion.tigris.org/ Subversion] and [http://maven.apache.org/ Maven].
  
   $ mkdir ESAPI
+
   $ svn checkout http://owasp-esapi-java.googlecode.com/svn/trunk ESAPI
 
   $ cd ESAPI
 
   $ cd ESAPI
  $ svn checkout http://owasp-esapi-java.googlecode.com/svn/trunk
 
 
   $ wget http://owaspantisamy.googlecode.com/files/antisamy-bin.1.3.jar
 
   $ wget http://owaspantisamy.googlecode.com/files/antisamy-bin.1.3.jar
   $ mvn install:install-file -DgroupId=OWASP -DartifactId=AntiSamy -Dversion=1.2 -Dpackaging=jar -Dfile=antisamy-bin.1.3.jar
+
   $ mvn install:install-file -DgroupId=OWASP -DartifactId=AntiSamy -Dversion=1.3 -Dpackaging=jar -Dfile=antisamy-bin.1.3.jar
   $ cd trunk
+
   $ rm antisamy-bin.1.3.jar            # Cleanup after Maven copies to repository.
   $ mvn -Dmaven.test.skip=true package
+
   $ mvn -Dmaven.test.skip=true package # Build ESAPI
  
 
Maven will generate a "target" directory that contains the ESAPI jar file.
 
Maven will generate a "target" directory that contains the ESAPI jar file.

Revision as of 05:13, 7 November 2009

ESAPI is easy to build yourself using Subversion and Maven.

 $ svn checkout http://owasp-esapi-java.googlecode.com/svn/trunk ESAPI
 $ cd ESAPI
 $ 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

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