From 059db7695213e5d8315d8a269b950f6b3a5989ac Mon Sep 17 00:00:00 2001 From: Dennis Kigen Date: Fri, 14 Nov 2025 13:22:58 +0300 Subject: [PATCH] (docs) Add build instructions to README Add build instructions and fix typo in the Custom Sort Weight Generators section. --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 05e7172e..a2d66a12 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ second based on `startedAt`. To leverage this option, one should ensure that th their Priority Concept Set are ordered from least to highest priority. #### Custom Sort Weight Generators -Modules that require this module can define and configure own custom algorithms. This would involve: +Modules that require this module can define and configure their own custom algorithms. This would involve: * Create a Spring Component in your module that implements the `SortWeightGenerator` interface * Provide a specific bean name for this Component that can be referenced * Configure the `queue.sortWeightGenerator` global property with this bean name @@ -111,3 +111,19 @@ Modules that require this module can define and configure own custom algorithms. ## Documentation - REST documentation [here](https://rest.openmrs.org/#queue) + +## Development + +### Building + +To build the module, run: + +```bash +mvn clean install +``` + +To skip tests during build: + +```bash +mvn clean install -DskipTests +```