Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion 03.microservices/01-step-by-step-changes/microservices-v2-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -1330,6 +1330,19 @@ New Lines
</dependency>

```
### Make sure to add the below repository to your pom.xml file for the Netflix Eureka Client dependency to work Modified

```xml
<repository>
<id>netflix-candidates</id>
<name>Netflix Candidates</name>
<url>https://artifactory-oss.prod.netflix.net/artifactory/maven-oss-candidates</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
```

#### /currency-exchange-service/src/main/resources/application.properties Modified
New Lines
```properties
Expand Down Expand Up @@ -1798,4 +1811,4 @@ spring.sleuth.sampler.probability=1.0
<artifactId>spring-rabbit</artifactId>
</dependency>

```
```