-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Grouping (libGDX) related gradle tasks together sensibly #187
Comments
A structure I could see work is something like
I am currently not really familiar with the whole task grouping details of Gradle and only argue from the point of view of the consumer. |
If groups turn out to only 1-2 items each, a better structure might be:
i.e. only have one libGDX group with all relevant base tasks. |
So the task grouping now (which only applies in IDEs, and Android Studio makes the task list harder to see) mostly uses the defaults. I barely know how much of Gradle works myself, so I haven't actually put a task into a group yet. I figure it shouldn't be too hard... I am reluctant to move existing tasks where people are used to them, so new aliases in groups may make more sense. |
As seen in libgdx/libgdx#7418, there can be some light confusion on which Gradle tasks are actually relevant to run in the context of a libGDX project. Thinking back many years when I didn't understand big words like
Gradle
myself, I can vaguely remember similar confusion, especially from the perspective of an out-of-the-box expectation.It might make sense to ensure some sort of structure for tasks on the implementation level (i.e. beyond the documentation), so that tooling like an IDE can integrate more easily and beginners can just get started, i.e. improve the onboarding experience.
From a quick sample over platforms/Lwjgl3.kt and platforms/Android.kt I couldn't see that the tasks defined in there have configured a group or definition.
The text was updated successfully, but these errors were encountered: