106. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/18/2018 3:37:03 PM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

106.1 Files compared

# Location File Last Modified
1 CTT_DM2_v7.zip\CTT_ntrt-jira-ssoi-authenticator Jenkinsfile Tue Jun 12 16:41:28 2018 UTC
2 CTT_DM2_v7.zip\CTT_ntrt-jira-ssoi-authenticator Jenkinsfile Fri Jun 15 21:16:00 2018 UTC

106.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 62
Changed 1 2
Inserted 0 0
Removed 0 0

106.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

106.4 Active regular expressions

No regular expressions were active.

106.5 Comparison detail

  1   pipeline {
  2  
  3       agent  any
  4  
  5       tools  {
  6           ma ven 'maven '
  7       }
  8  
  9       stages  {
  10           st age ("prep are") {
  11                steps {
  12                    sh ' jira-ssoi- authentica tor/src/te st/docker/ jira/bin/i nit.sh'
  13                    sh ' jira-ssoi- authentica tor/src/te st/docker/ certs/make _certs.sh'
  14                }
  15           }
  16           st age('build ') {
  17                steps {
  18                      sh 'mvn cl ean deploy  -DaltDepl oymentRepo sitory=vad ev::defaul t::https:/ / DNS                 : PORT /nexus/con tent/repos itories/sn apshots'
  19                }
  20           }
  21       }
  22  
  23       post {
  24           al ways {
  25                junit "j ira-ssoi-a uthenticat or/target/ surefire-r eports/*.x ml"
  26   //             junit  "jira-ssoi -authentic ator/targe t/failsafe -reports/* .xml"
  27           }
  28           su ccess {
  29                archive  'jira-ssoi -authentic ator/targe t/jira-sso i-authenti cator-bin. tar.gz'
  30           }
  31       }
  32   }