Skip to content

Commit

Permalink
Merge pull request #93 from MichiBaum/develop
Browse files Browse the repository at this point in the history
Revert "Update Spring Boot 3.3.6 -> 3.4.0"
  • Loading branch information
MichiBaum authored Dec 9, 2024
2 parents 66d2f3b + 328b053 commit c629acb
Show file tree
Hide file tree
Showing 11 changed files with 41 additions and 5 deletions.
3 changes: 3 additions & 0 deletions authentication-service/src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ spring:
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
dialect: org.hibernate.dialect.MariaDBDialect
boot:
admin:
client:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ spring:
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
dialect: org.hibernate.dialect.MariaDBDialect
boot:
admin:
client:
Expand Down
3 changes: 3 additions & 0 deletions chess-service/src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ spring:
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
dialect: org.hibernate.dialect.MariaDBDialect
boot:
admin:
client:
Expand Down
3 changes: 3 additions & 0 deletions chess-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ spring:
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
dialect: org.hibernate.dialect.MariaDBDialect
boot:
admin:
client:
Expand Down
3 changes: 3 additions & 0 deletions fitness-service/src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ spring:
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
dialect: org.hibernate.dialect.MariaDBDialect
boot:
admin:
client:
Expand Down
3 changes: 3 additions & 0 deletions fitness-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ spring:
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
dialect: org.hibernate.dialect.MariaDBDialect
boot:
admin:
client:
Expand Down
3 changes: 3 additions & 0 deletions music-service/src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ spring:
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
dialect: org.hibernate.dialect.MariaDBDialect
boot:
admin:
client:
Expand Down
3 changes: 3 additions & 0 deletions music-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ spring:
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
dialect: org.hibernate.dialect.MariaDBDialect
boot:
admin:
client:
Expand Down
16 changes: 11 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<!--
TODO Spring Boot [3.4.0] is not compatible with this Spring Cloud release train 2023.0.x
https://github.com/spring-projects/spring-boot/wiki
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-parent
-->
<version>3.4.0</version>
<version>3.3.6</version>
<relativePath />
</parent>

Expand All @@ -25,12 +25,13 @@
https://github.com/spring-cloud/spring-cloud-release/wiki/Supported-Versions#supported-releases
https://github.com/spring-cloud/spring-cloud-release/wiki/Spring-Cloud-2024.0-Release-Notes
-->
<spring-cloud.version>2024.0.0</spring-cloud.version>
<spring-cloud.version>2023.0.4</spring-cloud.version>

<!--
https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-server
TODO 3.4.1
-->
<spring-boot-admin.version>3.4.1</spring-boot-admin.version>
<spring-boot-admin.version>3.3.6</spring-boot-admin.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>21</maven.compiler.source>
Expand All @@ -40,8 +41,9 @@
<!--
https://stackoverflow.com/a/77179226/10258204
https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib
TODO 2.1.0
-->
<kotlin.version>2.1.0</kotlin.version>
<kotlin.version>2.0.21</kotlin.version>

<!--
https://mockk.io/
Expand All @@ -60,6 +62,10 @@
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-common</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
Expand Down
3 changes: 3 additions & 0 deletions usermanagement-service/src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ spring:
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
dialect: org.hibernate.dialect.MariaDBDialect
boot:
admin:
client:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ spring:
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
dialect: org.hibernate.dialect.MariaDBDialect
boot:
admin:
client:
Expand Down

0 comments on commit c629acb

Please sign in to comment.