Skip to content

Commit

Permalink
#27 Removed unnecessary dependency, simplified dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cer committed Jan 10, 2024
1 parent e73820a commit 2d8d6fe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
12 changes: 6 additions & 6 deletions eventuate-tram-examples-basic-event-publisher/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ apply plugin: 'org.springframework.boot'

dependencies {
implementation "io.eventuate.tram.core:eventuate-tram-spring-events-publisher-starter"
implementation "io.eventuate.tram.core:eventuate-tram-messaging"

implementation "org.springframework.boot:spring-boot-starter-web"

if (messageBroker == 'kafka') {
implementation "io.eventuate.tram.core:eventuate-tram-spring-jdbc-$messageBroker"
} else {
implementation "io.eventuate.tram.core:eventuate-tram-jdbc-$messageBroker"
}

testImplementation "io.eventuate.tram.core:eventuate-tram-spring-testing-support-messaging:$eventuateTramVersion" // FIXMEπ
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "io.eventuate.util:eventuate-util-test"
implementation "org.springframework.boot:spring-boot-starter-web"

testImplementation "io.eventuate.tram.core:eventuate-tram-spring-testing-support-messaging:$eventuateTramVersion" // FIXME
testImplementation "io.eventuate.tram.core:eventuate-tram-spring-in-memory"
testImplementation "io.eventuate.util:eventuate-util-test"

testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "io.rest-assured:spring-mock-mvc"

}
Expand Down
9 changes: 4 additions & 5 deletions eventuate-tram-examples-basic-event-subscriber/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,21 @@ apply plugin: 'org.springframework.boot'
dependencies {

implementation "io.eventuate.tram.core:eventuate-tram-spring-events-subscriber-starter"
implementation "io.eventuate.tram.core:eventuate-tram-messaging"

implementation "org.springframework.boot:spring-boot-starter"

if (messageBroker == 'kafka') {
implementation "io.eventuate.tram.core:eventuate-tram-spring-jdbc-$messageBroker"
} else {
implementation "io.eventuate.tram.core:eventuate-tram-jdbc-$messageBroker"
}

implementation "org.springframework.boot:spring-boot-starter"

testImplementation project(":eventuate-tram-examples-basic-event-publisher")
testImplementation "org.springframework.boot:spring-boot-starter-test"

testImplementation "io.eventuate.tram.core:eventuate-tram-spring-in-memory"
testImplementation "io.eventuate.util:eventuate-util-test"

testImplementation "io.eventuate.tram.core:eventuate-tram-spring-in-memory"
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "io.rest-assured:spring-mock-mvc"

}
Expand Down

0 comments on commit 2d8d6fe

Please sign in to comment.