This is an automated email from the ASF dual-hosted git repository. ddanielr pushed a commit to branch feature/speedup-tests-reduce-log-spam in repository https://gitbox.apache.org/repos/asf/accumulo-proxy.git
commit 223c4b54e65b7dc6a4303fcaa91b273bba4dcdd7 Author: Daniel Roberts ddanielr <[email protected]> AuthorDate: Fri Aug 22 16:15:50 2025 +0000 Redirect cluster logs to files to reduce output When the tests are run, the exception messages from the proxy server are sent to STDOUT. This pollutes the output and makes it harder to read the test output. This change redirects the server messages to a file and keeps the output clean. Also replaced a deprecated property with its newer version to remove a build warning message. --- pom.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3ec525e..d5bd582 100644 --- a/pom.xml +++ b/pom.xml @@ -93,11 +93,12 @@ <eclipseFormatterStyle>contrib/Eclipse-Accumulo-Codestyle.xml</eclipseFormatterStyle> <!-- extra release args for testing --> <extraReleaseArguments /> + <failsafe.failIfNoSpecifiedTests>false</failsafe.failIfNoSpecifiedTests> <hadoop.version>3.3.6</hadoop.version> - <it.failIfNoSpecifiedTests>false</it.failIfNoSpecifiedTests> <maven.compiler.release>11</maven.compiler.release> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> + <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile> <slf4j.version>2.0.12</slf4j.version> <sourceReleaseAssemblyDescriptor>source-release-tar</sourceReleaseAssemblyDescriptor> <spotbugs.excludeFilterFile>src/main/spotbugs/exclude-filter.xml</spotbugs.excludeFilterFile>
