Difference between revisions of "ESAPI-Building"
From OWASP
| 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]. | ||
Revision as of 03:17, 4 July 2009
ESAPI is easy to build yourself using Subversion and Maven.
$ mkdir ESAPI $ cd ESAPI $ svn checkout http://owasp-esapi-java.googlecode.com/svn/trunk $ mvn -Dmaven.test.skip=true package
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