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