Skip to content

Commit 5002a20

Browse files
committed
Update software for Spring cloud.
1 parent 1beac7a commit 5002a20

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,5 +389,11 @@ Removing network ssm_default
389389
### The End
390390
Happy coding :)
391391
392+
### Credit for Original Code
393+
The code here at first inspired by the book [Hands-On Microservices With Spring Boot and Spring
394+
Cloud book by Packt Publishing](https://www.packtpub.com/web-development/hands-on-microservices-with-spring-boot-and-spring-cloud). Here I am adding more business concepts, while
395+
kepping the project software stack updated to the most recent software versions. Besides
396+
, adding more use cases and problems, my team and I are facing in a day by day work.
397+
392398
# License
393399
Copyright (C) 2017-2020 Mohamed Taman, Licensed under the MIT License.

store-base/store-build-chassis/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<properties>
2121
<java.version>14</java.version>
22-
<spring.cloud.version>2020-1.M1</spring.cloud.version>
22+
<spring.cloud.version>2020.0.0-M2</spring.cloud.version>
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2424
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2525

@@ -33,7 +33,7 @@
3333
<maven.plugin.version.version>2.7</maven.plugin.version.version>
3434
<maven.plugin.dockerfile.version>1.4.13</maven.plugin.dockerfile.version>
3535
<springfox.swagger.version>3.0.0-SNAPSHOT</springfox.swagger.version>
36-
<org.mapstruct.version>1.3.1.Final</org.mapstruct.version>
36+
<org.mapstruct.version>1.4.0.Beta1</org.mapstruct.version>
3737
<org.lombok.version>1.18.12</org.lombok.version>
3838

3939
<!--Plugins control points -->

store-base/store-cloud-chassis/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<artifactId>spring-boot-starter-actuator</artifactId>
2525
</dependency>
2626
<!-- End - Providing some useful infos about the service through REST API -->
27+
2728
<!-- Start - Cloud dependencies -->
2829
<!-- Start - Spring Stream processing using "RabbitMQ massaging" -->
2930
<dependency>
@@ -49,9 +50,9 @@
4950
<artifactId>spring-cloud-starter-zipkin</artifactId>
5051
</dependency>
5152
<!-- End - Spring Cloud Distributed Tracking with "Zipkin" -->
52-
53-
5453
<!-- End - Cloud dependencies -->
54+
<!-- End - Core spring dependencies -->
55+
5556
<!-- Start - Testing dependencies -->
5657
<dependency>
5758
<groupId>org.springframework.boot</groupId>

store-base/store-service-chassis/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
2424
</dependency>
2525
<!-- End - Spring cloud Eureka service discovery client -->
26-
<!-- End - Cloud dependencies -->
27-
<!-- End - Core spring dependencies -->
2826

2927
<!-- Start - Testing dependencies -->
3028
<!-- Start - Spring reactor testing library -->

0 commit comments

Comments
 (0)