Added task to list deps.
parent
dd3408f122
commit
b6e29e5f09
|
@ -7,6 +7,10 @@ repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation 'ch.qos.logback:logback-classic:1.5.16'
|
||||||
|
}
|
||||||
|
|
||||||
idea {
|
idea {
|
||||||
module {
|
module {
|
||||||
downloadJavadoc = true
|
downloadJavadoc = true
|
||||||
|
@ -22,3 +26,23 @@ tasks.register('runApp', JavaExec) {
|
||||||
classpath = sourceSets.main.runtimeClasspath
|
classpath = sourceSets.main.runtimeClasspath
|
||||||
mainClass = "pl.polgrabia.demos.kotlin.ProgramKt"
|
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
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue