From d0d06c6bde8ceba88e57fed1b29fd84c4624390d Mon Sep 17 00:00:00 2001 From: dclif Date: Sun, 5 Oct 2025 19:16:18 -0500 Subject: [PATCH] Suggested update of a new feature that allows the application to output a user-defined greeting instead of the fixed "Hello world!" string. --- src/test/java/com/mycompany/app/README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/test/java/com/mycompany/app/README.md diff --git a/src/test/java/com/mycompany/app/README.md b/src/test/java/com/mycompany/app/README.md new file mode 100644 index 0000000000..a7c18f00b1 --- /dev/null +++ b/src/test/java/com/mycompany/app/README.md @@ -0,0 +1,17 @@ +# simple-java-maven-app + +This repository is for the +[Build a Java app with Maven](https://jenkins.io/doc/tutorials/build-a-java-app-with-maven/) +tutorial in the [Jenkins User Documentation](https://jenkins.io/doc/). + +The repository contains a simple Java application which outputs the string +"Hello world!" and is accompanied by a couple of unit tests to check that the +main application works as expected. The results of these tests are saved to a +JUnit XML report. + +To come, is an addition of a new feature that allows the application to output a user-defined greeting as opposed to the fixed "Hello World!" string. + +The `jenkins` directory contains an example of the `Jenkinsfile` (i.e. Pipeline) +you'll be creating yourself during the tutorial and the `jenkins/scripts` subdirectory +contains a shell script with commands that are executed when Jenkins processes +the "Deliver" stage of your Pipeline.