diff --git a/bookmark/build.gradle.kts b/bookmark/build.gradle.kts new file mode 100644 index 0000000..4eebb35 --- /dev/null +++ b/bookmark/build.gradle.kts @@ -0,0 +1,6 @@ +description = "Umbrella : Bookmarks" + +dependencies{ + implementation(project(":core")) +} + diff --git a/settings.gradle.kts b/settings.gradle.kts index a4ea6ea..6d2516c 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,6 +1,7 @@ rootProject.name = "Umbrella25" include("backend") +include("bookmark") include("company") include("contact") include("core")