From b6e29e5f09d08191c4f65b6f77a4a5d13c00d036 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20P=C3=B3=C5=82grabia?= Date: Mon, 20 Jan 2025 22:53:37 +0100 Subject: [PATCH] Added task to list deps. --- 2025/01/kotlin_demo1/build.gradle | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/2025/01/kotlin_demo1/build.gradle b/2025/01/kotlin_demo1/build.gradle index 3831f25..a89cee2 100644 --- a/2025/01/kotlin_demo1/build.gradle +++ b/2025/01/kotlin_demo1/build.gradle @@ -7,6 +7,10 @@ repositories { mavenCentral() } +dependencies { + implementation 'ch.qos.logback:logback-classic:1.5.16' +} + idea { module { downloadJavadoc = true @@ -22,3 +26,23 @@ tasks.register('runApp', JavaExec) { classpath = sourceSets.main.runtimeClasspath mainClass = "pl.polgrabia.demos.kotlin.ProgramKt" } + +tasks.register('fetchSources') { + /** + def classpath = sourceSets.main.runtimeClasspath + classpath.each { + println it.class + } + + **/ + + project.configurations.implementation.allDependencies.each { dep -> + // println("${dep.group}:${dep.name}:${dep.version}") + dep.class.methods.each { + println(it) + } + + // TODO implement fetching it from repositories + } + +}