Skip to content

Commit fd3edf0

Browse files
authored
(docs) Add build instructions to README (#89)
Add build instructions and fix typo in the Custom Sort Weight Generators section.
1 parent a93b9a7 commit fd3edf0

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ second based on `startedAt`. To leverage this option, one should ensure that th
102102
their Priority Concept Set are ordered from least to highest priority.
103103

104104
#### Custom Sort Weight Generators
105-
Modules that require this module can define and configure own custom algorithms. This would involve:
105+
Modules that require this module can define and configure their own custom algorithms. This would involve:
106106
* Create a Spring Component in your module that implements the `SortWeightGenerator` interface
107107
* Provide a specific bean name for this Component that can be referenced
108108
* 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.
111111
## Documentation
112112

113113
- REST documentation [here](https://rest.openmrs.org/#queue)
114+
115+
## Development
116+
117+
### Building
118+
119+
To build the module, run:
120+
121+
```bash
122+
mvn clean install
123+
```
124+
125+
To skip tests during build:
126+
127+
```bash
128+
mvn clean install -DskipTests
129+
```

0 commit comments

Comments
 (0)