--confirm=option |
Used with --set , determines which updates require confirmation.
--confirm=all requires confirmation on the console for each update performed.
--confirm=dependencies means that confirmation is only required when updating versions appearing in module imports; module versions are updated without confirmation.
--confirm=none prevents any confirmation.
(default: all ).
|
--cwd=dir |
Specifies the current working directory for this tool. (default: the directory where the tool is run from)
|
--dependencies |
Display modules who depend on the given module. Only used when displaying modules, not when setting a new version.
|
--encoding=charset |
Used with --set , sets the encoding used for reading and writing the module.ceylon files (default: platform-specific).
|
--no-update-dependencies |
Do not update of the version in module imports of the target module(s) in other modules in the given --src directories. For example:
ceylon version --set 1.1 ceylon.collection
would update the version of ceylon.collection to 1.1 and update the module import version of all dependent modules in the given --src directories which depended on ceylon.collection even if those modules are not listed as `<modules>`.
Whereas:
ceylon version --set 1.1 --no-update-dependencies ceylon.collection
would just update the version of ceylon.collection to 1.1, leaving dependent modules depending on the old version.
|
--set=value |
The new version number to set.If unspecified then module versions are shown and not updated.
|
--source=dirs |
An alias for --src (default: ./source )
|
--src=dir |
A directory containing Ceylon and/or Java source code (default: ./source )
|
--update-distribution |
Also set the version of any dependency to the Ceylon distribution modules
|
--verbose[=flags] , -d |
Produce verbose output. If no flags are given then be verbose about everything, otherwise just be verbose about the flags which are present. Allowed flags include: all , loader .
|