Where are gradle tasks defined
Asked Answered
P

2

13

I have a gradle project.

When I type "gradlew tasks" i see a bunch of tasks.

Where are these tasks? How do i see where they are defined?

Peterpeterborough answered 27/6, 2018 at 4:58 Comment(0)
M
2

gradle help --task <taskname>

Will give you information about a given task.

Moises answered 23/2, 2019 at 5:7 Comment(2)
This does not show the path to the task.Tlaxcala
You may be able to infer the path to the task based on the Java package listed for it (under the "Type" heading).Lifeanddeath
F
0

Have you tried the build.gradle file? I think they might be there.

Flammable answered 10/7, 2023 at 0:24 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.