File tree Expand file tree Collapse file tree 4 files changed +26
-19
lines changed
Expand file tree Collapse file tree 4 files changed +26
-19
lines changed Original file line number Diff line number Diff line change 1- This directory is for utilities used for building / packaging / releasing
2- ESAPI.
1+ This directory is for utilities used for building / packaging / releasing ESAPI.
32
43========================
54
6- Jim Manico's instructions for creating changelog.txt:
7-
8- This is an ECLIPSE plug-in feature, not a SVN feature.
9-
10- I use the SUBCLIPSE plugin.
11-
12- Right click project root
13-
14- TEAM -> SHOW HISTORY
15-
16- Then from the history table, I see a list of history entries that represent
17- our checking.
18-
19- I select a few rows, right click, then pick CHANGELOG.
20-
21-
22- (Note: The SVN Subversive plug-in does NOT support this.)
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 $@
You can’t perform that action at this time.
0 commit comments