https://kotlinlang.org logo
#announcements
Title
# announcements
n

Nikolai

07/17/2019, 2:27 PM
Hi, is where any way to look into source code of Gradle task(s) added by plugin ( I mean Kotlin-Multiplatform and I guess Android plugins )?
b

Big Chungus

07/17/2019, 2:29 PM
What I usually do is importing the task into build.gradle.kts and then CTRL+B onto it
m

Mike

07/17/2019, 2:29 PM
Hmm. Do you mean by looking at the source code of the plugin? Most are on Github these days. Or above suggestion.
b

Big Chungus

07/17/2019, 2:29 PM
you can get the class of the task via
gradle model
n

Nikolai

07/17/2019, 2:46 PM
Thank you. I will try those suggestions. I want to know what exactly task do, so I guess I need code of task. If it is possible only looking into whole plugin, when - yes, plugin sources.
@Big Chungus Build.gradle.kts - it’s usual build.gradle but on Kotlin instead groovy? Can you please, explain what do you mean importing task? Where is a command for it?
Never mind I found answer
b

Big Chungus

07/17/2019, 4:15 PM
You were right 😄
Glad you found the answer