-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from bee-produced/5-restructure-project
Restructure project
- Loading branch information
Showing
164 changed files
with
644 additions
and
674 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
.../gradle/wrapper/gradle-wrapper.properties → .../gradle/wrapper/gradle-wrapper.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
lib.events/settings.gradle.kts → bee.buzz/settings.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
rootProject.name = "events" | ||
rootProject.name = "bee.buzz" | ||
|
||
dependencyResolutionManagement { | ||
versionCatalogs { | ||
create("libs") { from(files("../gradle/libs.versions.toml")) } | ||
} | ||
} | ||
|
||
includeBuild("../lib.result") | ||
includeBuild("../bee.functional") |
2 changes: 1 addition & 1 deletion
2
...om/beeproduced/lib/events/Notification.kt → .../com/beeproduced/bee/buzz/Notification.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...lin/com/beeproduced/lib/events/Request.kt → ...otlin/com/beeproduced/bee/buzz/Request.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...produced/lib/events/manager/EventError.kt → ...eeproduced/bee/buzz/manager/EventError.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...oduced/lib/events/manager/EventManager.kt → ...produced/bee/buzz/manager/EventManager.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.beeproduced.lib.events.manager | ||
package com.beeproduced.bee.buzz.manager | ||
|
||
/** | ||
* | ||
|
12 changes: 6 additions & 6 deletions
12
...eeproduced/lib/events/manager/Mediator.kt → .../beeproduced/bee/buzz/manager/Mediator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...eproduced/lib/events/manager/Scheduler.kt → ...beeproduced/bee/buzz/manager/Scheduler.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
bee.buzz/src/simple/kotlin/com/beeproduced/bee/buzz/autoconfig/BeeBuzzAutoConfiguration.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package com.beeproduced.bee.buzz.autoconfig | ||
|
||
import com.beeproduced.bee.buzz.manager.EventManager | ||
import com.beeproduced.bee.buzz.manager.Mediator | ||
import com.beeproduced.bee.buzz.manager.Scheduler | ||
import com.beeproduced.bee.buzz.manager.SimpleEventManager | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass | ||
import org.springframework.context.annotation.Bean | ||
import org.springframework.context.annotation.Configuration | ||
|
||
/** | ||
* | ||
* | ||
* @author Kacper Urbaniec | ||
* @version 2023-10-23 | ||
*/ | ||
@Configuration | ||
@ConditionalOnClass(value = [EventManager::class, Mediator::class, Scheduler::class]) | ||
open class BeeBuzzAutoConfiguration { | ||
@Bean | ||
open fun beeBuzzEventManager() : EventManager { | ||
return SimpleEventManager() | ||
} | ||
} |
16 changes: 8 additions & 8 deletions
16
.../lib/events/manager/SimpleEventManager.kt → ...ed/bee/buzz/manager/SimpleEventManager.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ed/lib/events/manager/TestEventManager.kt → ...uced/bee/buzz/manager/TestEventManager.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...exceptions/NotificationHandlerNotFound.kt → ...exceptions/NotificationHandlerNotFound.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.beeproduced.lib.events.manager.exceptions | ||
package com.beeproduced.bee.buzz.manager.exceptions | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...ager/exceptions/RequestHandlerNotFound.kt → ...ager/exceptions/RequestHandlerNotFound.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.beeproduced.lib.events.manager.exceptions | ||
package com.beeproduced.bee.buzz.manager.exceptions | ||
|
||
/** | ||
* | ||
|
1 change: 1 addition & 0 deletions
1
...esources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
com.beeproduced.bee.buzz.autoconfig.BeeBuzzAutoConfiguration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.