BAEL-2435 Change aggregate package
-Change aggregate package to commandmodel package per best practice -Move the aggregate test to the same package for the test directory
This commit is contained in:
parent
3553fb7506
commit
3e3210a803
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.axon.aggregates;
|
||||
package com.baeldung.axon.commandmodel;
|
||||
|
||||
import static org.axonframework.modelling.command.AggregateLifecycle.apply;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.axon;
|
||||
package com.baeldung.axon.commandmodel;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -6,7 +6,6 @@ import org.axonframework.test.aggregate.AggregateTestFixture;
|
|||
import org.axonframework.test.aggregate.FixtureConfiguration;
|
||||
import org.junit.*;
|
||||
|
||||
import com.baeldung.axon.aggregates.MessagesAggregate;
|
||||
import com.baeldung.axon.commands.CreateMessageCommand;
|
||||
import com.baeldung.axon.commands.MarkReadMessageCommand;
|
||||
import com.baeldung.axon.events.MessageCreatedEvent;
|
Loading…
Reference in New Issue