This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 |