trevjonez / composer-gradle-plugin

Gradle task type and plugin for interacting with https://github.com/gojuno/composer
Apache License 2.0
54 stars 18 forks source link

Tasks not showing in task list #37

Closed tir38 closed 5 years ago

tir38 commented 5 years ago

I added composer gradle plugin as described in README. I then went to check that task was added:

./gradlew app:tasks --all | grep -i composer

But got zero results. After triple checking my setup I decided to just run the task /gradlew app:testDebugCompose and everything worked fine. The tests started up right away. I'm not sure why the composer task(s) didn't get add to the all tasks list

trevjonez commented 5 years ago

that is a really great question, let me try and reproduce on my end. Thinking maybe it is due to the new lazy task api's but I need to look closer to be sure.

trevjonez commented 5 years ago

Looks like I was missing a group attribute on the registered tasks which causes it to not be listed. fix will be in 0.11

tir38 commented 5 years ago

I was finally able to test this on 0.11 Looks good thanks.