From 925158b149b77d6e61956a6130f75ea15bbbad6b Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Mon, 20 Nov 2023 12:32:51 +0530 Subject: [PATCH] feat(build): remove modulegraph plugin I don't care --- README.md | 29 ----------------------------- build.gradle.kts | 11 ----------- gradle/libs.versions.toml | 1 - 3 files changed, 41 deletions(-) diff --git a/README.md b/README.md index 585f2990..0e886e59 100644 --- a/README.md +++ b/README.md @@ -18,35 +18,6 @@ Unofficial Android app for read-only access to [lobste.rs](https://lobste.rs), b alt="A grid of screenshots from the app, in clockwise order: the main screen, the comments page, the search page and the saved posts page" width="550" /> -## Module dependency graph - -```mermaid -%%{ - init: { - 'theme': 'dark' - } -}%% - -graph TB - - subgraph database - core - impl - end - model --> core - benchmark --> android - impl --> core - android --> api - android --> common - android --> core - android --> impl - android --> model - android --> benchmark - api --> model - common --> core - common --> model -``` - ## License See [LICENSE](LICENSE) diff --git a/build.gradle.kts b/build.gradle.kts index 3a82a2bf..579954ee 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,19 +4,8 @@ * license that can be found in the LICENSE file or at * https://opensource.org/licenses/MIT. */ -import dev.iurysouza.modulegraph.Orientation -import dev.iurysouza.modulegraph.Theme - plugins { id("dev.msfjarvis.claw.spotless") id("dev.msfjarvis.claw.versions") id("dev.msfjarvis.claw.kotlin-common") - alias(libs.plugins.modulegraph) -} - -moduleGraphConfig { - heading.set("## Module dependency graph") - orientation.set(Orientation.TOP_TO_BOTTOM) - readmePath.set(project.layout.projectDirectory.file("README.md").asFile.absolutePath) - theme.set(Theme.DARK) } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 0e477d8b..02fb1fb0 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -108,7 +108,6 @@ baselineprofile = { id = "androidx.baselineprofile", version.ref = "benchmark" } kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } ksp = "com.google.devtools.ksp:1.9.20-1.0.13" licensee = "app.cash.licensee:1.8.0" -modulegraph = "dev.iurysouza.modulegraph:0.5.0" modulegraphassert = "com.jraska.module.graph.assertion:2.5.0" poko = "dev.drewhamilton.poko:0.15.0" sqldelight = { id = "app.cash.sqldelight", version.ref = "sqldelight" }