21. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 7/25/2018 3:40:56 PM Central 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.

21.1 Files compared

# Location File Last Modified
1 Pain_Coach_v3.0_Jun_2018.zip\vpc-patient-web.zip\vpc-patient-web\app\veteran\cordova build.gradle Fri Jun 1 14:26:04 2018 UTC
2 Pain_Coach_v3.0_Jun_2018.zip\vpc-patient-web.zip\vpc-patient-web\app\veteran\cordova build.gradle Wed Jul 25 13:54:28 2018 UTC

21.2 Comparison summary

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

21.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

21.4 Active regular expressions

No regular expressions were active.

21.5 Comparison detail

  1   buildscrip t {
  2       reposi tories {
  3                    mave n {
  4                    url  "https://p lugins.gra dle.org/m2 /"
  5           }
  6           jc enter()
  7       }
  8       depend encies {
  9           cl asspath "g radle.plug in.org.ope nbakery:xc ode-plugin :0.14.2"
  10       }
  11   }
  12  
  13   apply plug in: "org.o penbakery. xcode-plug in"
  14  
  15   def minorV ersion = S ystem.gete nv("BUILD_ NUMBER") a s Integer  ?: 999
  16   def appVer sion = "1. 0." + mino rVersion a s String
  17  
  18   def curren tPath = fi le(".")
  19   println 'C urrent Pat h: ' + cur rentPath
  20   def defaul tEnvironme nt = "Rele ase"
  21   def enviro nment = de faultEnvir onment
  22   def thisBu ildType =  defaultEnv ironment
  23  
  24   if (System .propertie s['buildTy pe'] != nu ll) {
  25           th isBuildTyp e = System .propertie s['buildTy pe'].toStr ing()
  26   }
  27  
  28   environmen t = thisBu ildType
  29   println 'T his Build  Type: ' +  thisBuildT ype
  30  
  31   xcodebuild  {
  32     scheme =  "Pain Coa ch"
  33     target =  "Pain Coa ch"
  34     configur ation = en vironment
  35     
  36     simulato r = false
  37     ipaFileN ame = "Pai n Coach" +  "-" + env ironment +  "-" + app Version
  38     
  39     signing  {
  40                    mobi leProvisio nURI = "fi le://" + c urrentPath  + "/" + " Pain_Coach .mobilepro vision"
  41                    cert ificateURI  = "file:/ /" + curre ntPath + " /" + "VACe rtificates .p12"
  42                     certificat ePassword  = '
A I '
  43           }
  44   }
  45  
  46   infoplist  {
  47           ve rsion = mi norVersion
  48           sh ortVersion String = a ppVersion
  49   }
  50  
  51   hockeyapp  {
  52           ap iToken = " 741df5477c 7640279897 e6219f13f5 d4"
  53           ap pID = "0ba c3a7a045ff 57b9325679 3b91c080c"
  54           no tes =  env ironment +  " build g enerated a utomatical ly"
  55           no tify = 1
  56   }
  57  
  58   tasks.hock eyapp.must RunAfter t asks.packa ge
  59  
  60   task build App (type:  GradleBui ld) {
  61  
  62       doFirs t {
  63                    prin tln '===== ========== ========== ========== ========== ========== ===='
  64                    prin tln 'build Type: ' +  thisBuildT ype
  65                    prin tln '===== ========== ========== ========== ========== ========== ===='
  66  
  67                    swit ch (thisBu ildType) {
  68                             case " developmen t":
  69                                      tasks =  ['clean',
  70                                                        ' xcodebuild ']
  71                                      println  'Running d evelopment  tasks: '  + tasks
  72                                      break
  73                             case " Release":
  74                                      tasks =  ['clean',
  75                                                        ' xcodebuild ',
  76                                                        ' archive',
  77                                                        ' package',
  78                                                        ' hockeyapp' ]
  79                                      println  'Running r elease tas ks: ' + ta sks
  80                                      break
  81                             defaul t:
  82                                      tasks =  ['clean',
  83                                                        ' xcodebuild ']
  84                                      println  'Running d efault tas ks: ' + ta sks
  85                                      break
  86                    }
  87       }
  88   }