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
Line 4: | Line 4: | ||
$ cd ESAPI | $ cd ESAPI | ||
$ svn checkout http://owasp-esapi-java.googlecode.com/svn/trunk | $ svn checkout http://owasp-esapi-java.googlecode.com/svn/trunk | ||
+ | $ 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 -Dmaven.test.skip=true package | $ mvn -Dmaven.test.skip=true package | ||
Revision as of 15:12, 27 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 $ 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 -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