This is an automated email from the ASF dual-hosted git repository. robertlazarski pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git
commit 31cabacd56d91db7a5fb611cc38e1db75ae58993 Author: Robert Lazarski <[email protected]> AuthorDate: Sun Apr 19 21:49:42 2026 -1000 AXIS2-6085 Document build prerequisites including bash requirement Add Prerequisites section to README.txt listing JDK 17+, Maven 3.9+, and bash shell. Bash is required by some Maven plugins and integration tests but was not previously documented, causing build failures on Windows without Git Bash or WSL. --- README.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.txt b/README.txt index 9696f15a4e..c779fddf6a 100644 --- a/README.txt +++ b/README.txt @@ -8,6 +8,12 @@ ___________________ Building =================== +Prerequisites: + - JDK 17 or later + - Maven 3.9+ (http://maven.apache.org) + - Bash shell (required by some Maven plugins and integration tests; + available by default on Linux/macOS, use Git Bash or WSL on Windows) + We use Maven 3 (http://maven.apache.org) to build, and you'll find a pom.xml in each module, as well as at the top level. Use "mvn install" (or "mvn clean install" to clean up first) to build.
