Fix mvn javadoc:javadoc failure, update javadoc plugin to 3.4.1
[aai/schema-service.git] / README.md
1 # AAI Schema Service
2
3 ## Development
4 ### Local setup
5 In order to start the service locally, here is what needs to be done
6 ``` bash
7 mvn clean install 
8 ```
9
10 Above command only needs to be run the first time.
11
12 The command below actually starts the microservice
13 ``` bash
14 mvn -pl aai-schema-service -PrunAjsc
15 ```
16
17 ### Run code formatter
18 ``` bash
19 mvn formatter:format spotless:apply process-sources
20 ```