Skip to content

Commit

Permalink
Update project dependency graph
Browse files Browse the repository at this point in the history
  • Loading branch information
vjh0107 committed Jan 24, 2024
1 parent 163eae2 commit 0a6f3eb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,15 @@ subprojects {
}
extensions.getByType<JavaPluginExtension>().sourceCompatibility = JavaVersion.VERSION_17
}
}

dependencyGraphGenerator {
projectGenerators.configureEach {
includeProject = { project ->
project.name != "starter"
}
projectNode = { node, _ ->
node.add(guru.nidi.graphviz.attribute.Style.SOLID, guru.nidi.graphviz.attribute.Color.rgb("#000000"))
}
}
}
Binary file modified project-dependency-graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions spring-bukkit-reactive/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ dependencies {

api(projects.core)
api(libs.reactor)
implementation(projects.view)

testImplementation(libs.paper)
testImplementation(libs.spring.test)
Expand Down
1 change: 1 addition & 0 deletions spring-bukkit-support/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dependencies {

api(projects.core)
implementation(projects.command)
implementation(projects.view)

testImplementation(libs.spigot)
testImplementation(libs.spring.test)
Expand Down

0 comments on commit 0a6f3eb

Please sign in to comment.