Skip to content

Instantly share code, notes, and snippets.

@thought-police-000
thought-police-000 / dependency-report.gradle
Created November 29, 2021 08:51 — forked from abesto/dependency-report.gradle
Gradle: multi-project dependency graph
task dependencyReport {
doLast {
def file = new File("project-dependencies.dot")
file.delete()
file << "digraph {\n"
file << "splines=ortho\n"
rootProject.childProjects.each { item ->
def from = item.value
from.configurations.compile.dependencies
.matching { it in ProjectDependency }
@thought-police-000
thought-police-000 / class.puml
Created October 24, 2021 22:47
SVG source output
@startuml
class X
note left of X: <math>2*pi</math>
note right of X: <math>d/dxf(x)=lim_(h->0)(f(x+h)-f(x))/h^2</math>
@enduml