feat(build): remove modulegraph plugin

I don't care
This commit is contained in:
Harsh Shandilya 2023-11-20 12:32:51 +05:30
parent 6f1c1b3629
commit 925158b149
No known key found for this signature in database
3 changed files with 0 additions and 41 deletions

View file

@ -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" 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" /> 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 ## License
See [LICENSE](LICENSE) See [LICENSE](LICENSE)

View file

@ -4,19 +4,8 @@
* license that can be found in the LICENSE file or at * license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT. * https://opensource.org/licenses/MIT.
*/ */
import dev.iurysouza.modulegraph.Orientation
import dev.iurysouza.modulegraph.Theme
plugins { plugins {
id("dev.msfjarvis.claw.spotless") id("dev.msfjarvis.claw.spotless")
id("dev.msfjarvis.claw.versions") id("dev.msfjarvis.claw.versions")
id("dev.msfjarvis.claw.kotlin-common") 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)
} }

View file

@ -108,7 +108,6 @@ baselineprofile = { id = "androidx.baselineprofile", version.ref = "benchmark" }
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
ksp = "com.google.devtools.ksp:1.9.20-1.0.13" ksp = "com.google.devtools.ksp:1.9.20-1.0.13"
licensee = "app.cash.licensee:1.8.0" licensee = "app.cash.licensee:1.8.0"
modulegraph = "dev.iurysouza.modulegraph:0.5.0"
modulegraphassert = "com.jraska.module.graph.assertion:2.5.0" modulegraphassert = "com.jraska.module.graph.assertion:2.5.0"
poko = "dev.drewhamilton.poko:0.15.0" poko = "dev.drewhamilton.poko:0.15.0"
sqldelight = { id = "app.cash.sqldelight", version.ref = "sqldelight" } sqldelight = { id = "app.cash.sqldelight", version.ref = "sqldelight" }