File tree Expand file tree Collapse file tree 1 file changed +17
-6
lines changed
Expand file tree Collapse file tree 1 file changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,25 @@ distributions {
2424 exclude " **/__pycache__"
2525 into " client"
2626 }
27- project(" :dumper:app" ). afterEvaluate {
28- from it. tasks. installPublishedDist
27+
28+ def dumperProject = project(' :dumper:app' )
29+ def permissionsProject = project(' :permissions-migration:app' )
30+ def dtsTransferProject = project(' :dts-transfer-status:app' )
31+
32+ dumperProject. afterEvaluate {
33+ into(" dumper" ) {
34+ from dumperProject. tasks. installPublishedDist
35+ }
2936 }
30- project(" :permissions-migration:app" ). afterEvaluate {
31- from it. tasks. installPublishedDist
37+ permissionsProject. afterEvaluate {
38+ into(" permissions-migration" ) {
39+ from permissionsProject. tasks. installPublishedDist
40+ }
3241 }
33- project(" :dts-transfer-status:app" ). afterEvaluate {
34- from it. tasks. installPublishedDist
42+ dtsTransferProject. afterEvaluate {
43+ into(" dts-transfer-status" ) {
44+ from dtsTransferProject. tasks. installPublishedDist
45+ }
3546 }
3647 }
3748 }
You can’t perform that action at this time.
0 commit comments