-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revert version/id they cant be properties, add readme.
- Loading branch information
1 parent
c1a57ca
commit 2cc4aec
Showing
4 changed files
with
48 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
### Project Structure | ||
|
||
- customer-service-api: Java package defining only the interfaces and the models of the service. | ||
This package can be consumed by clients in order to use this service (see CustomerClient for an example). | ||
- customer-service-impl: Java package containing the service implementation. | ||
|
||
### Maven | ||
|
||
Build (and test project) | ||
```bash | ||
./mvnw clean install | ||
# or | ||
./mvnw clean install -DskipTests | ||
``` | ||
|
||
Run spring application for development | ||
```bash | ||
./mvnw -pl customer-service-impl spring-boot:run | ||
``` | ||
|
||
Build image and add it to your docker daemon | ||
```bash | ||
./mvnw -pl customer-service-impl compile jib:dockerBuild | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters