Skip to content

Commit

Permalink
style: format source accordingly to guides & conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
Dima Denysenko committed Nov 18, 2023
1 parent ad5b6d4 commit 13d3e58
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 33 deletions.
12 changes: 6 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "maven"
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
version : 2
updates :
- package-ecosystem : "maven"
directory : "/" # Location of package manifests
schedule :
interval : "weekly"
2 changes: 1 addition & 1 deletion dashboard-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
<limit>
<counter>INSTRUCTION</counter>
<value>COVEREDRATIO</value>
<minimum>0.8</minimum>
<minimum>0.8</minimum>
</limit>
<limit>
<counter>CLASS</counter>
Expand Down
2 changes: 1 addition & 1 deletion dashboard-service/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ management :
metrics :
export :
step : 20s
enabled: true
enabled : true
zipkin :
tracing :
endpoint : ${TEMPO_URL:http://localhost:9411/api/v2/spans}
Expand Down
2 changes: 1 addition & 1 deletion edge-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
<limit>
<counter>INSTRUCTION</counter>
<value>COVEREDRATIO</value>
<minimum>0.8</minimum>
<minimum>0.8</minimum>
</limit>
<limit>
<counter>CLASS</counter>
Expand Down
2 changes: 1 addition & 1 deletion edge-service/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ management :
metrics :
export :
step : 20s
enabled: true
enabled : true
zipkin :
tracing :
endpoint : ${TEMPO_URL:http://localhost:9411/api/v2/spans}
Expand Down
2 changes: 1 addition & 1 deletion importer-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
<limit>
<counter>INSTRUCTION</counter>
<value>COVEREDRATIO</value>
<minimum>0.8</minimum>
<minimum>0.8</minimum>
</limit>
<limit>
<counter>CLASS</counter>
Expand Down
2 changes: 1 addition & 1 deletion importer-service/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ management :
metrics :
export :
step : 20s
enabled: true
enabled : true
zipkin :
tracing :
endpoint : ${TEMPO_URL:http://localhost:9411/api/v2/spans}
Expand Down
2 changes: 1 addition & 1 deletion init-container-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
<limit>
<counter>INSTRUCTION</counter>
<value>COVEREDRATIO</value>
<minimum>0.8</minimum>
<minimum>0.8</minimum>
</limit>
<limit>
<counter>CLASS</counter>
Expand Down
2 changes: 1 addition & 1 deletion init-container-service/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ management :
metrics :
export :
step : 20s
enabled: true
enabled : true
zipkin :
tracing :
endpoint : ${TEMPO_URL:http://localhost:9411/api/v2/spans}
Expand Down
34 changes: 17 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,23 +53,23 @@
</modules>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>dev.knowhowto.sample-bookingdb-mix-rest-graphql-amqp</groupId>
<artifactId>batch-job</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.knowhowto.sample-bookingdb-mix-rest-graphql-amqp</groupId>
<artifactId>booking-persistence</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.knowhowto.sample-bookingdb-mix-rest-graphql-amqp</groupId>
<artifactId>booking-api-client</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<dependencies>
<dependency>
<groupId>dev.knowhowto.sample-bookingdb-mix-rest-graphql-amqp</groupId>
<artifactId>batch-job</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.knowhowto.sample-bookingdb-mix-rest-graphql-amqp</groupId>
<artifactId>booking-persistence</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.knowhowto.sample-bookingdb-mix-rest-graphql-amqp</groupId>
<artifactId>booking-api-client</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec :
name : dashboard-service
key : rabbitmq-password
- name : SPRING_AMQP_DESERIALIZATION_TRUST_ALL
value: "true"
value : "true"
resources :
requests :
cpu : "0.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec :
name : importer-service
key : rabbitmq-password
- name : SPRING_AMQP_DESERIALIZATION_TRUST_ALL
value: "true"
value : "true"
resources :
requests :
cpu : "0.2"
Expand Down

0 comments on commit 13d3e58

Please sign in to comment.