From 9cf9901c23b14a7c3028e722aa428205fd2b0e30 Mon Sep 17 00:00:00 2001 From: Andrei Solntsev Date: Mon, 18 Sep 2017 23:00:46 +0300 Subject: [PATCH 1/2] fix `play help dependencies`: now --sync option is the default --- documentation/commands/cmd-dependencies.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/documentation/commands/cmd-dependencies.txt b/documentation/commands/cmd-dependencies.txt index a5dfc62353..32c2fe88ae 100644 --- a/documentation/commands/cmd-dependencies.txt +++ b/documentation/commands/cmd-dependencies.txt @@ -15,9 +15,8 @@ ~ Compute resolve and retrieve project dependencies and install them either in ~ lib/ directory for jar artifacts or in modules/ for Play modules artifacts. ~ -~ By default the command will not delete unrecognized artifacts. -~ Use the --sync option to keep both lib/ and modules/ directory synchronized -~ with the dependencies management system. +~ By default the command will delete unrecognized artifacts. +~ Use the --nosync to keep unrecognized artifacts in lib/ and modules/ directories. ~ ~ Some options specified after the application path are passed to the JVM : java memory( example. -Xms64m -Xmx256m). ~ If JVM memory options (starting with -Xm') are not specified in command line arguments, then any @@ -48,6 +47,7 @@ ~ --nosync: ~ Keep lib/ and modules/ directory unchanged. ~ Keep unknown dependencies. +~ It was default behaviour until play 1.4.4 ~ ~ --forceCopy: ~ Never create files pointing to the original folder, always copy the folder From cd94a1381864c0e98356af7f4567112631f5cea4 Mon Sep 17 00:00:00 2001 From: Andrei Solntsev Date: Mon, 18 Sep 2017 23:01:08 +0300 Subject: [PATCH 2/2] add support for `play help deps` command --- documentation/commands/cmd-deps.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 documentation/commands/cmd-deps.txt diff --git a/documentation/commands/cmd-deps.txt b/documentation/commands/cmd-deps.txt new file mode 100644 index 0000000000..69bd57ce9f --- /dev/null +++ b/documentation/commands/cmd-deps.txt @@ -0,0 +1,8 @@ +~ Name: +~ ~~~~~ +~ deps -- synonym for dependencies +~ +~ Alias: +~ ~~~~~ +~ dependencies +~