WIP: Add Makefile and Documentation for Building the Provider #2

Draft
june wants to merge 8 commits from building_help into main
2 changed files with 14 additions and 0 deletions
Showing only changes of commit 0a9c6aca11 - Show all commits

add Makefile and docs on how to build the provider

June 2026-03-24 18:43:16 +01:00
Signed by: june
SSH key fingerprint: SHA256:o9EAq4Y9N9K0pBQeBTqhSDrND5E7oB+60ZNx0U1yPe0

7
Makefile Normal file
View file

@ -0,0 +1,7 @@
verify:
mvn -f attribute-endpoints-provider verify
clean:
mvn -f attribute-endpoints-provider clean
.PHONY: verify clean

View file

@ -12,6 +12,13 @@ Every endpoint responds with a list of all attribute values, that:
Multivalue attributes are flattened in the response. Multivalue attributes are flattened in the response.
## Building
Maven is required for building the provider.
Once all dependencies are met, simply call `make` to build the provider, which should then produce a `attribute-endpoints-provider-1.0-SNAPSHOT.jar` in the `attribute-endpoints-provider/target/` directory.
There's also `make clean` available for removing the output directory.
## Example Setup ## Example Setup