This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch 2.1.0 in repository https://gitbox.apache.org/repos/asf/causeway.git
commit 8a13a2fa4f3a4b091da33a0ecaa531e72ee5b009 Author: Dan Haywood <[email protected]> AuthorDate: Sun Jul 7 11:09:07 2024 +0100 2.1.0: updates release process docs --- .../comguide/modules/ROOT/pages/release-process-prereqs.adoc | 5 ++++- scripts/ln-tooling-jar.sh | 4 ++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/antora/components/comguide/modules/ROOT/pages/release-process-prereqs.adoc b/antora/components/comguide/modules/ROOT/pages/release-process-prereqs.adoc index 5e1e244a0e..8b0603e605 100644 --- a/antora/components/comguide/modules/ROOT/pages/release-process-prereqs.adoc +++ b/antora/components/comguide/modules/ROOT/pages/release-process-prereqs.adoc @@ -178,11 +178,14 @@ In the regular `causeway` repo: * Create a symlink to the `causewaystuff-tooling-cli` jar file + +eg: ++ [source,bash] +.scripts/ln-tooling-jar.sh ---- mkdir -p tooling/cli/target pushd tooling/cli/target -ln -s ../../../../../apache-causeway-committers/causewaystuff/tooling/cli/target/causewaystuff-tooling-cli-spring-boot.jar causewaystuff-tooling-cli.jar +ln -s ../../../../../apache-causeway-committers/causewaystuff/tooling/cli/target/causeway-tooling-cli-spring-boot.jar causewaystuff-tooling-cli.jar popd ---- + diff --git a/scripts/ln-tooling-jar.sh b/scripts/ln-tooling-jar.sh new file mode 100755 index 0000000000..6f02667ba9 --- /dev/null +++ b/scripts/ln-tooling-jar.sh @@ -0,0 +1,4 @@ +mkdir -p tooling/cli/target +pushd tooling/cli/target +ln -s ../../../../../../apache-causeway-committers/causewaystuff/tooling/cli/target/causeway-tooling-cli-spring-boot.jar causewaystuff-tooling-cli.jar +popd
