Skip to content

Commit

Permalink
Upgraded:
Browse files Browse the repository at this point in the history
- EventStoreDB client to 3.0.0
- EventStoreDB Docker image to 21.10.5
- other dependencies
  • Loading branch information
oskardudycz committed Jul 1, 2022
1 parent bcc1f3f commit f27612d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
# EventStoreDB - Event Store
#######################################################
eventstore.db:
image: eventstore/eventstore:21.10.1-buster-slim
image: eventstore/eventstore:21.10.5-buster-slim
# use this image if you're running ARM-based proc like Apple M1
# image: ghcr.io/eventstore/eventstore:21.10.0-alpha-arm64v8
environment:
Expand Down
16 changes: 8 additions & 8 deletions samples/event-sourcing-esdb-aggregates/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@ repositories {

dependencies {
// Spring Boot Web
implementation 'org.springframework.boot:spring-boot-starter-web:2.6.7'
implementation 'org.springframework.boot:spring-boot-starter-web:2.7.0'
// Validation
implementation 'org.springframework.boot:spring-boot-starter-validation:2.6.7'
implementation 'org.springframework.boot:spring-boot-starter-validation:2.7.0'
// Retry policy
implementation 'org.springframework.retry:spring-retry:1.3.3'
// Swagger
implementation 'org.springdoc:springdoc-openapi-ui:1.6.7'
implementation "org.springdoc:springdoc-openapi-ui:1.6.9"
// Serialisation
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3'

// Log4J logging
implementation 'org.springframework.boot:spring-boot-starter-log4j2:2.6.7'
implementation 'org.springframework.boot:spring-boot-starter-log4j2:2.7.0'

// EventStoreDB client
implementation 'com.eventstore:db-client-java:3.0.0'


// Postgres and JPA for read models
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.6.7'
implementation 'org.postgresql:postgresql:42.3.4'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.7.0'
implementation 'org.postgresql:postgresql:42.3.6'
implementation 'junit:junit:4.13.2'

// Test frameworks
Expand All @@ -42,7 +42,7 @@ dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation 'org.junit.platform:junit-platform-launcher:1.8.2'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2.2'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3'
}

configurations {
Expand Down
18 changes: 9 additions & 9 deletions samples/event-sourcing-esdb-simple/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@ repositories {

dependencies {
// Spring Boot Web
implementation 'org.springframework.boot:spring-boot-starter-web:2.6.7'
implementation 'org.springframework.boot:spring-boot-starter-web:2.7.0'
// Validation
implementation 'org.springframework.boot:spring-boot-starter-validation:2.6.7'
implementation 'org.springframework.boot:spring-boot-starter-validation:2.7.0'
// Retry policy
implementation 'org.springframework.retry:spring-retry:1.3.3'
// Swagger
implementation 'org.springdoc:springdoc-openapi-ui:1.6.7'
implementation 'org.springdoc:springdoc-openapi-ui:1.6.9'
// Serialisation
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3'

// Log4J logging
implementation 'org.springframework.boot:spring-boot-starter-log4j2:2.6.7'
implementation 'org.springframework.boot:spring-boot-starter-log4j2:2.7.0'

// EventStoreDB client
implementation 'com.eventstore:db-client-java:2.0.0'
implementation 'com.eventstore:db-client-java:3.0.0'


// Postgres and JPA for read models
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.6.7'
implementation 'org.postgresql:postgresql:42.3.4'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.7.0'
implementation 'org.postgresql:postgresql:42.3.6'
implementation 'junit:junit:4.13.2'

// Test frameworks
Expand All @@ -42,7 +42,7 @@ dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation 'org.junit.platform:junit-platform-launcher:1.8.2'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2.2'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3'
}

configurations {
Expand Down

0 comments on commit f27612d

Please sign in to comment.