File tree Expand file tree Collapse file tree 5 files changed +29
-22
lines changed
Expand file tree Collapse file tree 5 files changed +29
-22
lines changed Original file line number Diff line number Diff line change 1+ This directory is for utilities used for building / packaging / releasing ESAPI.
2+
3+ ========================
4+
5+ README.txt -- This readme file.
6+ esapi-release.sh -- Obsolete script to create new ESAPI release. Will be replaced soon. Do not use for now.
7+ mvnQuietTest.bat -- Run 'mvn test' from DOS cmd prompt with logSpecial output suppressed.
8+ mvnQuietTest.sh -- Run 'mvn test' from bash with logSpecial output suppressed.
Original file line number Diff line number Diff line change 39394040# ###########################################################################
4141
42+ echo $0 : This script is obsolete and will be replaced soon.
43+ echo In the meantime, read through the release instructions in:
44+ echo " documentation/ESAPI-release-steps.odt"
45+ exit 2
46+
4247#
4348# Tunable parameters
4449#
Original file line number Diff line number Diff line change 1+ @ ECHO off
2+ rem Purpose: Run 'mvn test' with system property
3+ rem 'org.owasp.esapi.logSpecial.discard'
4+ rem set to true, so that all of the logSpecial output is suppressed.
5+ rem This reduces the total output of 'mvn test' by about 2000 or so
6+ rem lines.
7+
8+ mvn -Dorg.owasp.esapi.logSpecial.discard=true test %*
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ # Purpose: Run 'mvn test' with system property
3+ # 'org.owasp.esapi.logSpecial.discard'
4+ # set to true, so that all of the logSpecial output is suppressed.
5+ # This reduces the total output of 'mvn test' by about 2000 or so
6+ # lines.
7+
8+ exec mvn -Dorg.owasp.esapi.logSpecial.discard=true test $@
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments