Skip to content

Commit

Permalink
Merge pull request #16 from dartartem/wip-separate-cdc
Browse files Browse the repository at this point in the history
Wip separate cdc
  • Loading branch information
cer authored Jun 8, 2019
2 parents bfbdd7f + 7609c17 commit f2ea657
Show file tree
Hide file tree
Showing 74 changed files with 156 additions and 598 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ subprojects {
repositories {
mavenCentral()
maven { url "http://mavenrepo.eventuate.io/release"}
eventuateMavenRepoUrl.split(',').each { repoUrl -> maven { url repoUrl } }
}

dependencies {
Expand Down
3 changes: 3 additions & 0 deletions eventuate-client-java-common-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ apply plugin: PrivateModulePlugin
dependencies {
compile project(":eventuate-client-java")

compile "io.eventuate.common:eventuate-common-json-mapper:$eventuateCommonVersion"
compile "io.eventuate.common:eventuate-common-id:$eventuateCommonVersion"

compile "com.fasterxml.jackson.core:jackson-databind:2.8.8"
compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.8.8"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package io.eventuate.javaclient.commonimpl;

import io.eventuate.*;
import io.eventuate.common.id.Int128;

import java.util.List;
import java.util.Optional;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
import io.eventuate.Event;
import io.eventuate.EventWithMetadata;
import io.eventuate.FindOptions;
import io.eventuate.Int128;
import io.eventuate.common.id.Int128;
import io.eventuate.SaveOptions;
import io.eventuate.Snapshot;
import io.eventuate.UpdateOptions;
import io.eventuate.common.json.mapper.JSonMapper;

import java.util.List;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import io.eventuate.DispatchedEvent;
import io.eventuate.EndOfCurrentEventsReachedEvent;
import io.eventuate.Event;
import io.eventuate.common.json.mapper.JSonMapper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.eventuate.javaclient.commonimpl;

import io.eventuate.EntityIdAndVersion;
import io.eventuate.Int128;
import io.eventuate.common.id.Int128;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.eventuate.javaclient.commonimpl;

import io.eventuate.Int128;
import io.eventuate.common.id.Int128;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package io.eventuate.javaclient.commonimpl;

import io.eventuate.*;
import io.eventuate.common.id.Int128;
import io.eventuate.common.json.mapper.JSonMapper;
import io.eventuate.javaclient.commonimpl.schemametadata.EmptyEventSchemaMetadataManager;
import io.eventuate.javaclient.commonimpl.schemametadata.EventSchemaMetadataManager;

Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.eventuate.javaclient.commonimpl;

import io.eventuate.EventContext;
import io.eventuate.Int128;
import io.eventuate.common.id.Int128;
import org.apache.commons.lang.builder.ToStringBuilder;

import java.util.Optional;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.eventuate.javaclient.commonimpl;

import io.eventuate.Int128;
import io.eventuate.common.id.Int128;

public class SerializedSnapshotWithVersion {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import io.eventuate.Aggregate;
import io.eventuate.CompletableFutureUtil;
import io.eventuate.EntityIdAndType;
import io.eventuate.Int128;
import io.eventuate.common.id.Int128;
import io.eventuate.javaclient.commonimpl.*;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import io.eventuate.Aggregate;
import io.eventuate.CompletableFutureUtil;
import io.eventuate.EntityIdAndType;
import io.eventuate.Int128;
import io.eventuate.common.id.Int128;
import io.eventuate.javaclient.commonimpl.AggregateCrudFindOptions;
import io.eventuate.javaclient.commonimpl.AggregateCrudSaveOptions;
import io.eventuate.javaclient.commonimpl.AggregateCrudUpdateOptions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import io.eventuate.Aggregate;
import io.eventuate.EntityIdAndType;
import io.eventuate.Int128;
import io.eventuate.common.id.Int128;
import io.eventuate.javaclient.commonimpl.*;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@
import io.eventuate.Event;
import io.eventuate.EventWithMetadata;
import io.eventuate.FindOptions;
import io.eventuate.Int128;
import io.eventuate.common.id.Int128;
import io.eventuate.MissingApplyEventMethodStrategy;
import io.eventuate.SaveOptions;
import io.eventuate.Snapshot;
import io.eventuate.SnapshotManager;
import io.eventuate.SubscriberOptions;
import io.eventuate.UpdateOptions;
import io.eventuate.common.json.mapper.JSonMapper;
import io.eventuate.javaclient.commonimpl.*;
import io.eventuate.sync.EventuateAggregateStore;

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package io.eventuate.javaclient.domain;

import io.eventuate.*;
import io.eventuate.common.id.Int128;

import java.util.Map;
import java.util.Optional;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package io.eventuate.javaclient.domain;

import io.eventuate.*;
import io.eventuate.common.id.Int128;
import io.eventuate.javaclient.eventhandling.exceptionhandling.EventDeliveryExceptionHandlerManager;
import io.eventuate.javaclient.eventhandling.exceptionhandling.EventDeliveryExceptionHandlerWithState;
import io.eventuate.javaclient.eventhandling.exceptionhandling.MyException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.eventuate.javaclient.restclient;

import io.eventuate.Int128;
import io.eventuate.common.id.Int128;

import java.util.List;

Expand Down
Loading

0 comments on commit f2ea657

Please sign in to comment.