Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Instructions

  1. With ACLI version 9.0,  you can we can add the version to a Jira project and create a page in Confluence simultaneously using Command Line Interface (CLI).
  2. Include both confluence and Jira application URLs in the properties file.
  3. Create a text file(cmd1.txt) with actions addVersion and addPage to add a version in Jira and create a page in Confluence as below

  4. Code Block
    themeMidnight
     --action addVersion  --project "CREAT"  --name "V2"
     --action addPage --space "tabletest"  --title "This is title 0"  --content "This is a test page” --parent "Home"


  5. To execute the file, from the terminal run the below-given action

    Code Block
    themeMidnight
    myjira myconfluence --action run --file "cmd1.txt"


...