This file contains hidden or 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
ext.printDep = { dep, indent -> | |
println "${indent}${dep.moduleGroup}${dep.moduleName}${dep.moduleVersion}" | |
dep.children.each { child -> | |
printDep(child, "${indent} ") | |
} | |
} | |
task showBuildScriptDependencies { | |
doLast { | |
buildscript.configurations.classpath.resolvedConfiguration.firstLevelModuleDependencies.each { dep -> |
This file contains hidden or 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
Deadlock Detection: | |
No deadlocks found. | |
Thread 31896: (state = BLOCKED) | |
- sun.misc.Unsafe.park(boolean, long) @bci=0 (Interpreted frame) | |
- java.util.concurrent.locks.LockSupport.park(java.lang.Object) @bci=14, line=186 (Interpreted frame) | |
- java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await() @bci=42, line=2043 (Interpreted frame) | |
- org.gradle.messaging.remote.internal.hub.queue.EndPointQueue.take(java.util.Collection) @bci=36, line=49 (Interpreted frame) | |
- org.gradle.messaging.remote.internal.hub.MessageHub$Handler.run() @bci=25, line=350 (Interpreted frame) |
NewerOlder