Skip to content

Commit e0934ba

Browse files
committed
Changes to make Mr. Wichers a happy camper! :)
1 parent 4149ec2 commit e0934ba

File tree

4 files changed

+26
-19
lines changed

4 files changed

+26
-19
lines changed

scripts/README.txt

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,8 @@
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.

scripts/esapi-release.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@
3939
4040
############################################################################
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
#

scripts/mvnQuietTest.bat

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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 %*

scripts/mvnQuietTest.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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 $@

0 commit comments

Comments
 (0)