Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to event store 2.0.13 #56

Merged
merged 1 commit into from
Sep 7, 2019
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
event_sources:
- name: event.source
- name: example
is_default: true
location:
jms_uri: jms:topic:example.event
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ subscriptions_descriptor:
events:
- name: example.events.cake-ordered
schema_uri: http://justice.gov.uk/example/event/listener/example.events.cake-ordered.json
event_source_name: event.source
event_source_name: example


Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ subscriptions_descriptor:

- name: example.events.recipe-photograph-added
schema_uri: http://justice.gov.uk/example/event/example.events.recipe-photograph-added.json
event_source_name: event.source
event_source_name: example


Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ subscriptions_descriptor:

- name: example.events.cake-made
schema_uri: http://justice.gov.uk/example/event/example.events.cake-made.json
event_source_name: event.source
event_source_name: example
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class CakeshopEventGenerator {

private final Clock clock = new UtcClock();

private static final String EVENT_SOURCE = "event.source";
private static final String EVENT_SOURCE = "example";

public Event createRecipeAddedEvent(final long seed, final PositionInStreamIterator positionInStreamIterator) {

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

<framework-api.version>4.0.1</framework-api.version>
<framework.version>6.0.11</framework.version>
<event-store.version>2.0.11</event-store.version>
<event-store.version>2.0.13</event-store.version>
<framework-generators.version>2.0.8</framework-generators.version>
<file.service.version>1.17.11</file.service.version>

Expand Down