Produced by Araxis Merge on 4/27/2018 3:22:13 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.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | v2.0_Sprint_15_Build_5.zip\v2.0_Sprint_15_Build_5\Unredacted\ARS_Backend\ars_app | build.gradle | Tue Apr 24 14:38:28 2018 UTC |
| 2 | v2.0_Sprint_15_Build_5..zip\v2.0_Sprint_15_Build_5\Unredacted\ARS_Backend\ars_app | build.gradle | Thu Apr 26 16:45:14 2018 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 3 | 270 |
| Changed | 2 | 4 |
| Inserted | 0 | 0 |
| Removed | 0 | 0 |
| 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 |
No regular expressions were active.
| 1 | /* | |
| 2 | * This is the DEV v ersion of the gradle build fil e and has the config uration of Sonar tha t does the code anal ysis and t he code co verage. | |
| 3 | * Run the below gra dle comman d to view the sonar analysis | |
| 4 | * gradle sonarqube -Dsonar.ho st.url=htt p://localh ost:9000 | |
| 5 | */ | |
| 6 | ||
| 7 | group 'gov .va.ars' | |
| 8 | ||
| 9 | // Apply p lugins | |
| 10 | apply plug in: 'java' | |
| 11 | apply plug in: 'war' | |
| 12 | apply plug in: 'eclip se' | |
| 13 | apply plug in: 'eclip se-wtp' | |
| 14 | apply plug in: 'maven ' | |
| 15 | apply plug in: 'org.s onarqube' | |
| 16 | apply plug in: 'jacoc o' | |
| 17 | ||
| 18 | sourceComp atibility = 1.8 | |
| 19 | targetComp atibility = 1.8 | |
| 20 | ||
| 21 | eclipse { | |
| 22 | classpa th { | |
| 23 | contai ners 'org. eclipse.jd t.launchin g.JRE_CONT AINER' | |
| 24 | } | |
| 25 | } | |
| 26 | ||
| 27 | repositori es { | |
| 28 | maven { | |
| 29 | url 'http: // URL : PORT /repositor y/maven-ce ntral' | |
| 30 | } | |
| 31 | } | |
| 32 | ||
| 33 | war { | |
| 34 | baseName = 'ars'; | |
| 35 | } | |
| 36 | ||
| 37 | dependenci es { | |
| 38 | ||
| 39 | pr ovidedComp ile 'javax :javaee-we b-api:7.0' | |
| 40 | co mpile file Tree(dir: 'WEB-INF/l ib', inclu de: '*.jar ') | |
| 41 | co mpile ( | |
| 42 | // J unit depen dency | |
| 43 | 'jun it:junit:4 .12', | |
| 44 | ||
| 45 | // j stl depend ency | |
| 46 | 'jav ax.servlet :jstl:1.2' , | |
| 47 | ||
| 48 | // s ervlet api dependenc y | |
| 49 | 'jav ax.servlet :javax.ser vlet-api:3 .1.0', | |
| 50 | ||
| 51 | // B egin Sprin g Framewor k Dependen cy | |
| 52 | 'org .springfra mework:spr ing-contex t:4.3.4.RE LEASE', | |
| 53 | 'org .springfra mework:spr ing-web:4. 3.4.RELEAS E', | |
| 54 | 'org .springfra mework:spr ing-webmvc :4.3.4.REL EASE', | |
| 55 | 'org .springfra mework:spr ing-test:4 .3.4.RELEA SE', | |
| 56 | 'com .fasterxml .jackson.c ore:jackso n-databind :2.7.4', | |
| 57 | // E nd Spring Framework Dependency | |
| 58 | ||
| 59 | // S pring ORM support | |
| 60 | 'org .springfra mework:spr ing-orm:4. 3.4.RELEAS E', | |
| 61 | // E nd Spring ORM suppor t | |
| 62 | ||
| 63 | // S pring AOP + AspectJ | |
| 64 | 'org .springfra mework:spr ing-aop:4. 3.4.RELEAS E', | |
| 65 | 'org .aspectj:a spectjrt:1 .7.3', | |
| 66 | 'org .aspectj:a spectjweav er:1.7.3', | |
| 67 | // E nd AOP | |
| 68 | ||
| 69 | // L og4j Depen dencies | |
| 70 | 'org .apache.lo gging.log4 j:log4j:2. 7', | |
| 71 | ||
| 72 | // H ibernate d ependencie s | |
| 73 | 'org .hibernate :hibernate -entityman ager:5.2.5 .Final', | |
| 74 | 'org .hibernate :hibernate -core:5.2. 5.Final', | |
| 75 | //En d Hibernat e Configur ation | |
| 76 | ||
| 77 | // H ibernate v alidation | |
| 78 | 'org .hibernate :hibernate -validator :5.2.5.Fin al', | |
| 79 | ||
| 80 | // O racle depe ndency to be added t o the Nexu s Reposito ry | |
| 81 | // ' com.oracle :ojdbc14:1 0.2.0.2.0' , | |
| 82 | ||
| 83 | // S pring Data Dependenc ies | |
| 84 | 'org .springfra mework.dat a:spring-d ata-jpa:1. 10.5.RELEA SE', | |
| 85 | 'org .springfra mework:spr ing-tx:4.3 .4.RELEASE ', | |
| 86 | ||
| 87 | //Ju nit depend encies | |
| 88 | 'org .mockito:m ockito-all :1.10.19', | |
| 89 | ||
| 90 | //Po wer Mock d ependency | |
| 91 | 'org .powermock :powermock -module-ju nit4:1.6.6 ', | |
| 92 | ||
| 93 | // S pring Secu rity Depen dencies | |
| 94 | 'org .springfra mework.sec urity:spri ng-securit y-core:4.2 .0.RELEASE ', | |
| 95 | 'org .springfra mework.sec urity:spri ng-securit y-config:4 .2.0.RELEA SE', | |
| 96 | 'org .springfra mework.sec urity:spri ng-securit y-web:4.2. 0.RELEASE' , | |
| 97 | ||
| 98 | // A pache Comm ons Depend ency | |
| 99 | //'o rg.apache. commons:co mmons-io:1 .3.2', | |
| 100 | 'com mons-dbcp: commons-db cp:1.4' , | |
| 101 | ||
| 102 | // M ockito Tes ting Frame work | |
| 103 | 'org .mockito:m ockito-all :1.10.19', | |
| 104 | ||
| 105 | // H amCrest Te sting Fram ework | |
| 106 | 'org .hamcrest: hamcrest-l ibrary:1.3 ', | |
| 107 | ||
| 108 | //lo mbok depen dency | |
| 109 | //'o rg.project lombok:lom bok:1.16.1 8' | |
| 110 | ) | |
| 111 | } | |
| 112 | ||
| 113 | // SonarQu be Configu ration | |
| 114 | ||
| 115 | buildscrip t { | |
| 116 | reposito ries { | |
| 117 | maven { | |
| 118 | //ur l "https:/ /plugins.g radle.org/ m2/" | |
| 119 | url 'http: // URL : PORT /repositor y/maven-ce ntral' | |
| 120 | } | |
| 121 | } | |
| 122 | dependen cies { | |
| 123 | classp ath "org.s onarsource .scanner.g radle:sona rqube-grad le-plugin: 2.6.1" | |
| 124 | } | |
| 125 | } | |
| 126 | ||
| 127 | sonarqube { | |
| 128 | proper ties { | |
| 129 | pr operty "so nar.projec tKey", "ar s_app" | |
| 130 | pr operty "so nar.projec tName", "a rs_app" | |
| 131 | pr operty 'so nar.jacoco .reportPat hs', "${bu ildDir}/ja coco/testD ebug.exec" | |
| 132 | } | |
| 133 | } | |
| 134 | ||
| 135 | test { | |
| 136 | ignore Failures = true | |
| 137 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.