Created
July 7, 2022 07:42
-
-
Save pgreze/e16f242fbded1ae6215b87bc811f07f9 to your computer and use it in GitHub Desktop.
Revisions
-
pgreze created this gist
Jul 7, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ tasks.register("createResources") { doLast { println("Create resources") } } afterEvaluate { tasks.getByName("createResources") .finalizedBy(":scripts:pushPr") // > Task with name ':scripts:pushPr' not found in project ':app'. //tasks.getByName(":scripts:pushPr") // .dependsOn("createResources") } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ // Nothing This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ tasks.register("pushPr") { doLast { println("Push PR") } } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ include(":app") include(":scripts")