37. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/8/2017 1:33:40 PM Central Standard 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.

37.1 Files compared

# Location File Last Modified
1 PC_CP4_CiF.zip\FPPS_Backend\fpps_app build.gradle Fri Dec 8 17:51:38 2017 UTC
2 PC_CP4_CiF.zip\FPPS_Backend\fpps_app build.gradle Fri Dec 8 19:04:56 2017 UTC

37.2 Comparison summary

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

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

37.4 Active regular expressions

No regular expressions were active.

37.5 Comparison detail

  1   /*
  2    * This bu ild file i s used by  Jenkins in  EDE to bu ild the FP PS (NEW) b ackend.
  3    */
  4  
  5   group 'gov .va.fpps'
  6   //version  '1.0-SNAPS HOT'
  7  
  8   // Apply p lugins
  9   apply plug in: 'java'
  10   apply plug in: 'war'
  11   apply plug in: 'eclip se'
  12   apply plug in: 'eclip se-wtp'
  13   apply plug in: 'maven '
  14  
  15   sourceComp atibility  = 1.8
  16   targetComp atibility  = 1.8
  17  
  18   repositori es {
  19       maven  {
  20             url 'http: // SERVER : PORT /repositor y/maven-ce ntral'
  21       }
  22   }
  23  
  24   war {
  25    baseName  = 'fpps';
  26   }
  27  
  28   dependenci es {
  29           pr ovidedComp ile 'javax :javaee-we b-api:7.0'
  30           co mpile file Tree(dir:  'WEB-INF/l ib', inclu de: '*.jar ')
  31           co mpile (
  32                    // J unit depen dency
  33                    'jun it:junit:4 .12',
  34                    
  35                    // j stl depend ency
  36                    'jav ax.servlet :jstl:1.2' ,
  37                    
  38                    // s ervlet api  dependenc y
  39                    'jav ax.servlet :javax.ser vlet-api:3 .1.0',
  40                    
  41                    // B egin Sprin g Framewor k Dependen cy
  42                    'org .springfra mework:spr ing-contex t:4.3.4.RE LEASE',
  43                    'org .springfra mework:spr ing-web:4. 3.4.RELEAS E',
  44                    'org .springfra mework:spr ing-webmvc :4.3.4.REL EASE',
  45                    'org .springfra mework:spr ing-test:4 .3.4.RELEA SE',
  46                    'com .fasterxml .jackson.c ore:jackso n-databind :2.7.4',
  47                    // E nd Spring  Framework  Dependency
  48                    
  49                    // S pring ORM  support
  50                    'org .springfra mework:spr ing-orm:4. 3.4.RELEAS E',
  51                    // E nd Spring  ORM suppor t
  52                    
  53                    // S pring AOP  + AspectJ
  54                    'org .springfra mework:spr ing-aop:4. 3.4.RELEAS E',
  55                    'org .aspectj:a spectjrt:1 .7.3',
  56                    'org .aspectj:a spectjweav er:1.7.3',
  57                    // E nd AOP
  58                    
  59                    // L og4j Depen dencies
  60                    'org .apache.lo gging.log4 j:log4j:2. 7',
  61                    
  62                    // H ibernate d ependencie s
  63                    'org .hibernate :hibernate -entityman ager:5.2.5 .Final',
  64                    'org .hibernate :hibernate -core:5.2. 5.Final',
  65                    //En d Hibernat e Configur ation
  66                    
  67                    // H ibernate v alidation
  68                    'org .hibernate :hibernate -validator :5.2.5.Fin al',
  69                    
  70                    // O racle depe ndency to  be added t o the Nexu s Reposito ry
  71                    // ' com.oracle :ojdbc14:1 0.2.0.2.0' ,
  72                    
  73                    // S pring Data  Dependenc ies
  74                    'org .springfra mework.dat a:spring-d ata-jpa:1. 10.5.RELEA SE',
  75                    'org .springfra mework:spr ing-tx:4.3 .4.RELEASE ',
  76                    
  77                    //Ju nit depend encies
  78                    'org .mockito:m ockito-all :1.10.19',
  79                    
  80                    //Po wer Mock d ependency
  81                    'org .powermock :powermock -module-ju nit4:1.6.6 ',
  82                    
  83                    // S pring Secu rity Depen dencies
  84                    'org .springfra mework.sec urity:spri ng-securit y-core:4.2 .0.RELEASE ',
  85                    'org .springfra mework.sec urity:spri ng-securit y-config:4 .2.0.RELEA SE',
  86                    'org .springfra mework.sec urity:spri ng-securit y-web:4.2. 0.RELEASE' ,
  87                    
  88                    // A pache Comm ons Depend ency
  89                    //'o rg.apache. commons:co mmons-io:1 .3.2',
  90                    'com mons-dbcp: commons-db cp:1.4' ,
  91                    
  92                    // M ockito Tes ting Frame work
  93                    'org .mockito:m ockito-all :1.10.19',
  94                    
  95                    // H amCrest Te sting Fram ework
  96                    'org .hamcrest: hamcrest-l ibrary:1.3 ',
  97                    
  98                    //lo mbok depen dency
  99                    //'o rg.project lombok:lom bok:1.16.1 8'
  100                    )
  101   }