Compare commits

..

No commits in common. "eb227db9c68b0cf276dab784bc796a481461c4c6" and "45d4991ae2e8bbe9519458b2fa005864f99e1e75" have entirely different histories.

View file

@ -47,21 +47,30 @@ Build taske looks like this:
orchestra/orchestra {:mvn/version "2021.01.01-1"}
org.domaindrivenarchitecture/build {:mvn/version "0.1.1-SNAPSHOT"}}
:tasks
{:init (do (def project {:name "test"
:module (first *command-line-args*)
:project-root-path "../../.."
:build-dir-name "target"
:version "4.11.8-dev"
:debug true}))
plan
{plan
{:requires ([dda.build.terragrunt :as tg])
:task (tg/plan! project)}
:task (tg/plan! {:name "test"
:module (first *command-line-args*)
:project-root-path "../../.."
:build-dir-name "target"
:version "4.11.8-dev"
:debug true})}
apply
{:requires ([dda.build.terragrunt :as tg])
:task (tg/apply! project)}
:task (tg/apply! {:name "test"
:module (first *command-line-args*)
:project-root-path "../../.."
:build-dir-name "target"
:version "4.11.8-dev"
:debug true})}
destroy
{:requires ([dda.build.terragrunt :as tg])
:task (tg/destroy! project)}}}
:task (tg/destroy! {:name "test"
:module (first *command-line-args*)
:project-root-path "../../.."
:build-dir-name "target"
:version "4.11.8-dev"
:debug true})}}}
```
Execute the build