Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename lib projects to follow gradle convention #291

Merged
merged 5 commits into from
Jan 16, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
suggestion
  • Loading branch information
AwkwardPeak7 committed Jan 16, 2024
commit 07b15450906d507bd4ab137736b7c7e3c55c49c9
5 changes: 1 addition & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
include(":core")

// Load all modules under /lib
File(rootDir, "lib").eachDir {
val libName = it.name
include("lib:$libName")
}
File(rootDir, "lib").eachDir { include("lib:${it.name}") }

if (System.getenv("CI") == null || System.getenv("CI_MODULE_GEN") == "true") {
// Local development (full project build)
Expand Down