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
m |
(Removing steps do download and install AntiSamy locally because it's already available on the Maven Central repository (and the dependency is correctly declared in the POM)) |
||
Line 3: | Line 3: | ||
$ svn checkout http://owasp-esapi-java.googlecode.com/svn/trunk ESAPI | $ svn checkout http://owasp-esapi-java.googlecode.com/svn/trunk ESAPI | ||
$ cd ESAPI | $ cd ESAPI | ||
− | |||
− | |||
− | |||
$ mvn -Dmaven.test.skip=true package # Build ESAPI | $ mvn -Dmaven.test.skip=true package # Build ESAPI | ||
Revision as of 13:43, 24 November 2011
ESAPI is easy to build yourself using Subversion and Maven. Ensure that you are using UTF-8 for all source code.
$ svn checkout http://owasp-esapi-java.googlecode.com/svn/trunk ESAPI $ cd ESAPI $ 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