diff options
author | 2022-09-19 16:55:36 +0200 | |
---|---|---|
committer | 2022-09-19 16:55:36 +0200 | |
commit | 7343beeaf260747aef6a6b9c22acd91de67c5ca0 (patch) | |
tree | cc90d98dfb61d5066184b346612bb04caaae64b4 /README.md | |
parent | e0ad4f2890f9f933199bc6f1b3f0e988da471aa9 (diff) |
Add instructions to invoke the linter and code formatter plugins to the README and invoke the formatter
Issue-ID: AAI-3526
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: Ibd383994732cea6460153704a1153beb530dc6c3
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -1,17 +1,20 @@ # AAI Schema Service +## Development ### Local setup - In order to start the service locally, here is what needs to be done - -``` -> mvn clean install +``` bash +mvn clean install ``` -Above command only needs to be run the first time +Above command only needs to be run the first time. The command below actually starts the microservice - +``` bash +mvn -pl aai-schema-service -PrunAjsc ``` -> mvn -pl aai-schema-service -PrunAjsc + +### Run code formatter +``` bash +mvn formatter:format spotless:apply process-sources ``` |