 | Not yet available
Crucible REST interfaces are new for 1.5 and the documentation is not complete. Waiting for Atlassian to provide necessary information to complete this tool. |
|
Download statistics
|
Description/Features
This is a command line interface (CLI) for remotely accessing Crucible information . This is a working command line client that can be used directly with your installation. It provides a consistent interface with other Atlassian product CLI tools. The Crucibel CLI uses Crucible's REST API.
Additional information
Related CLI clients
All CLI clients have a standard interface and implementation.
Installation
- Unzip the distribution package and put the enclosed directory in a convenient location
- Ensure Remote API is enabled in your installation
- You need to be an administrator
- Go to Admin menu -> General Administration -> Server Settings -> Remote API
- Setting should be ON
Usage
- On a command line, cd to the directory where you installed the client
- On Windows
- On Linux (or Windows)
- Run java -jar release/crucible-cli-1.0.0.jar
- This will show help text for the command line interface client
- The client defaults to use a user of automation. Either add this user with all the authorities required to do the actions you want or specify a different user parameter
- It is recommended that you open the crucible.bat file with an editor and customize it for your environment by adding server, user, and password parameters. Follow the example in the comments and make sure you do not remove the %* at the end of the line.
Examples
- Note: the following examples assume that the crucible.bat file has been customized for your environment as noted above.
Help text
This is the help text displayed by the default command or using --help. This gives the precise definition of parameters, however, it might be easier to just look at the examples. Note, the information in this section is automatically generated, so if you have edit suggestions, add a comment. Otherwise, your edits will be replaced on the next update.
 | Tips
- Use single dash for single letter parameters - example: -v
- Use double dash for multi-letter parameters - example: --help
- When parameters are specified, most need a value - example: --action listReviews
- Some parameters are flags (boolean) and must not be followed by a value - example: --verbose
- Parameter names are case sensitive, but, action values are not - example: --PATH is invalid but --action listreviews is equivalent to --action listReviews
- Some parameters become required once a specific action is chosen. This is indicated in the help text for each value.
- Some parameters have both short (one letter) and long (more than one letter) parameter names - example: -a or --action are the same
- Some parameters have default values, if so, they are indicated below - example: (default: automation)
- Some parameters are required - indicated by (...) - example: (-a|--action) <action>
- Some parameters are optional - indicated by [...] - example: [(-f|--file) <file>]
- Values that have more than one word must be enclosed by double quotes - example: --query "select ..."
|
Usage:
Error handling
Care is taken to return the appropriate exit codes to the command processor. This makes it possible do error handling in automation scripts. Error and error logging output is directed to standard error.
| Error type |
Exit code |
Description |
| SUCCESS |
0 |
Normal exit |
| CLIENT_EXCEPTION |
-1 |
The client has found a problem with the request and is reporting an error with a message. |
| PARAMETER_PROBLEM |
-2 |
The client processed the command parameters and found a syntax error or missing required parameters according to the parameter definition |
| REMOTE_EXCEPTION |
-3 |
The remote system has reported an error. The error message comes from the server. |
| FAILURE |
-99 |
The client program failed in an unexpected way. |
License
- The software provided for this tool has a BSD style license
- The distribution ships binaries with a LGPL license
- Look in the license directory for detailed license information
Version History
| Date |
Release |
Notes |
| May 8, 2008 |
1.0.0 |
Initial release |