Skip to content
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
1 change: 0 additions & 1 deletion base-flow/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
* @since Oct-2024
*/
module build.base.flow {
requires java.logging;
requires build.base.foundation;

exports build.base.flow;
Expand Down
11 changes: 5 additions & 6 deletions base-logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
<artifactId>base-foundation</artifactId>
</dependency>

<dependency>
<groupId>build.base</groupId>
<artifactId>base-flow</artifactId>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand All @@ -35,11 +40,5 @@
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>build.base</groupId>
<artifactId>base-flow</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package build.base.flow;
package build.base.logging;

/*-
* #%L
* base.build Flow
* base.build Logging
* %%
* Copyright (C) 2025 Workday Inc
* %%
Expand All @@ -20,6 +20,10 @@
* #L%
*/

import build.base.flow.Publisher;
import build.base.flow.Subscriber;
import build.base.flow.SubscriberRegistry;

import java.util.logging.Handler;
import java.util.logging.LogRecord;

Expand Down
1 change: 1 addition & 0 deletions base-logging/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
*/
module build.base.logging {
requires java.logging;
requires build.base.flow;
requires build.base.foundation;

exports build.base.logging;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package build.base.logging;

import build.base.flow.LogRecordPublisher;
import build.base.flow.RecordingSubscriber;
import org.junit.jupiter.api.Test;

Expand Down
Loading