Jan Celada
04/12/2024, 3:26 AMapply() { } i register tasks called "deploy" deploy task executes some code checking. Executing it will be: ./gradlew myappname:deploy I have no issue so far everything it working.
When i look at the terminal I wonder why it is calling other projects. Let's say i have other project name app1, app2, app3
calling ./gradlew myappname:deploy results to:
> Configure project: app1
> Configure project: app2
> Configure project: app3
> Configure project: myappname
Well I just want to understand what is happening to make a informed decision if I want to pursue this
1. If I have 100 projects, so it will be called right?
2. Is this secure?
3. Am I doing the right thing?
4. Can this be improve?ephemient
04/12/2024, 8:27 AMephemient
04/12/2024, 8:29 AMephemient
04/12/2024, 8:30 AMephemient
04/12/2024, 8:33 AMJan Celada
04/12/2024, 2:54 PM