diff --git a/README.md b/README.md index 65a4903dd25120f1d053e3ee19b5173cb55fbdcc..66d3859762ee745ab74ebf1f6721b3cb2ba8a1a3 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,17 @@ Create an information system managing flight records at an airport. The system s  ## Installation -Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. +### To build with Maven + `$mvn clean install` +### To run app on localhost + `$mvn spring-boot:run - in each microservice separatly` ## Usage -Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. +### Used ports ++ Authorization - port 8083 ++ Core - port 8080 ++ Weather - port 8088 ++ Report - port 8085 ## Authors + Martin SlovĂk diff --git a/core-client/pom.xml b/core-client/pom.xml index 888deccf8f295e42fa9428b5bb234f5963451f9b..dda62460c625b61ff0e60cd866397731472d7dec 100644 --- a/core-client/pom.xml +++ b/core-client/pom.xml @@ -32,7 +32,7 @@ <generatorName>java</generatorName> <apiPackage>cz.muni.fi.pa165.core.client</apiPackage> <modelPackage>cz.muni.fi.pa165.core.client.model</modelPackage> - <invokerPackage>cz.muni.chat.fi.pa165.core.client.invoker</invokerPackage> + <invokerPackage>cz.muni.fi.pa165.core.client.invoker</invokerPackage> <verbose>false</verbose> <generateApiTests>false</generateApiTests> <generateModelTests>false</generateModelTests>