Skip to content

Commit 31efdb3

Browse files
committed
GH-259 - Rename modulith.events package to modulith.events.core.
Allows us to eventually use the former as user-facing API package in a to-be-introduced API JAR.
1 parent 46127e0 commit 31efdb3

File tree

43 files changed

+67
-67
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+67
-67
lines changed

spring-modulith-events/spring-modulith-events-core/src/main/java/org/springframework/modulith/events/config/EventPublicationConfiguration.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
import org.springframework.context.annotation.Import;
3636
import org.springframework.context.annotation.Role;
3737
import org.springframework.core.env.Environment;
38-
import org.springframework.modulith.events.DefaultEventPublicationRegistry;
39-
import org.springframework.modulith.events.EventPublicationRegistry;
40-
import org.springframework.modulith.events.EventPublicationRepository;
4138
import org.springframework.modulith.events.config.EventPublicationConfiguration.AsyncEnablingConfiguration;
39+
import org.springframework.modulith.events.core.DefaultEventPublicationRegistry;
40+
import org.springframework.modulith.events.core.EventPublicationRegistry;
41+
import org.springframework.modulith.events.core.EventPublicationRepository;
4242
import org.springframework.modulith.events.support.CompletionRegisteringAdvisor;
4343
import org.springframework.modulith.events.support.PersistentApplicationEventMulticaster;
4444
import org.springframework.scheduling.annotation.AbstractAsyncConfiguration;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.modulith.events;
16+
package org.springframework.modulith.events.core;
1717

1818
import java.time.Instant;
1919

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.modulith.events;
16+
package org.springframework.modulith.events.core;
1717

1818
import java.time.Instant;
1919
import java.util.Objects;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.modulith.events;
16+
package org.springframework.modulith.events.core;
1717

1818
import java.time.Clock;
1919
import java.time.Duration;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.modulith.events;
16+
package org.springframework.modulith.events.core;
1717

1818
import java.time.Clock;
1919
import java.time.Instant;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.modulith.events;
16+
package org.springframework.modulith.events.core;
1717

1818
import java.time.Duration;
1919
import java.util.Collection;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.modulith.events;
16+
package org.springframework.modulith.events.core;
1717

1818
import java.time.Instant;
1919
import java.util.List;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.modulith.events;
16+
package org.springframework.modulith.events.core;
1717

1818
/**
1919
* @author Oliver Drotbohm
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.modulith.events;
16+
package org.springframework.modulith.events.core;
1717

1818
import java.util.Objects;
1919

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
* The event publication registry abstraction.
33
*/
44
@org.springframework.lang.NonNullApi
5-
package org.springframework.modulith.events;
5+
package org.springframework.modulith.events.core;

0 commit comments

Comments
 (0)