File tree Expand file tree Collapse file tree 8 files changed +41
-54
lines changed Expand file tree Collapse file tree 8 files changed +41
-54
lines changed Original file line number Diff line number Diff line change 60
60
</dependency >
61
61
<dependency >
62
62
<groupId >${project.groupId} </groupId >
63
- <artifactId >integration-tests</artifactId >
63
+ <artifactId >json-schema</artifactId >
64
+ <version >${project.version} </version >
65
+ </dependency >
66
+ <dependency >
67
+ <groupId >${project.groupId} </groupId >
68
+ <artifactId >operator-swagger</artifactId >
69
+ <version >${project.version} </version >
70
+ </dependency >
71
+ <dependency >
72
+ <groupId >${project.groupId} </groupId >
73
+ <artifactId >installation-tests</artifactId >
64
74
<version >${project.version} </version >
65
75
</dependency >
66
76
</dependencies >
Original file line number Diff line number Diff line change 71
71
<artifactId >maven-failsafe-plugin</artifactId >
72
72
<configuration >
73
73
<encoding >UTF-8</encoding >
74
- <argLine >
75
- --add-opens java.base/java.time=ALL-UNNAMED
76
- </argLine >
74
+ <argLine >@{argLine} --add-opens java.base/java.time=ALL-UNNAMED</argLine >
77
75
<argLine >${failsafeArgLine} </argLine >
78
76
<failIfNoTests >false</failIfNoTests >
79
77
<includes >
Original file line number Diff line number Diff line change 44
44
</dependency >
45
45
</dependencies >
46
46
47
+ <properties >
48
+ <sonar .coverage.jacoco.xmlReportPaths>${basedir} /../${aggregate.report.dir} </sonar .coverage.jacoco.xmlReportPaths>
49
+ </properties >
50
+
47
51
</project >
Original file line number Diff line number Diff line change 119
119
<include >**/*IT.java</include >
120
120
<include >**/*AT.java</include >
121
121
</includes >
122
- <argLine >
123
- --add-opens java.base/java.time=ALL-UNNAMED
124
- </argLine >
122
+ <argLine >@{argLine} --add-opens java.base/java.time=ALL-UNNAMED</argLine >
125
123
</configuration >
126
124
<executions >
127
125
<execution >
137
135
</profile >
138
136
</profiles >
139
137
138
+ <properties >
139
+ <sonar .coverage.jacoco.xmlReportPaths>${basedir} /../${aggregate.report.dir} </sonar .coverage.jacoco.xmlReportPaths>
140
+ </properties >
141
+
140
142
</project >
Original file line number Diff line number Diff line change 92
92
<includes >
93
93
<exclude >**/*Test.java</exclude >
94
94
</includes >
95
- <argLine >--add-opens java.base/java.time=ALL-UNNAMED</argLine >
95
+ <argLine >@{argLine} --add-opens java.base/java.time=ALL-UNNAMED</argLine >
96
96
</configuration >
97
97
</plugin >
98
98
Original file line number Diff line number Diff line change 298
298
</configuration >
299
299
</plugin >
300
300
301
+ <plugin >
302
+ <groupId >org.jacoco</groupId >
303
+ <artifactId >jacoco-maven-plugin</artifactId >
304
+ <version >${jacoco.version} </version >
305
+ <executions >
306
+ <execution >
307
+ <id >prepare-agent</id >
308
+ <goals >
309
+ <goal >prepare-agent</goal >
310
+ </goals >
311
+ </execution >
312
+ </executions >
313
+ </plugin >
314
+
301
315
</plugins >
302
316
</build >
303
317
366
380
</build >
367
381
</profile >
368
382
369
- <profile >
370
- <id >build-sonar</id >
371
- <build >
372
- <plugins >
373
- <plugin >
374
- <groupId >org.jacoco</groupId >
375
- <artifactId >jacoco-maven-plugin</artifactId >
376
- <executions >
377
- <execution >
378
- <id >prepare-agent</id >
379
- <goals >
380
- <goal >prepare-agent</goal >
381
- </goals >
382
- </execution >
383
- </executions >
384
- </plugin >
385
- </plugins >
386
- </build >
387
- </profile >
388
-
389
- <profile >
390
- <id >jacoco</id >
391
- <activation >
392
- <property >
393
- <name >!no-reports</name >
394
- </property >
395
- </activation >
396
- <build >
397
- <plugins >
398
- <plugin >
399
- <groupId >org.jacoco</groupId >
400
- <artifactId >jacoco-maven-plugin</artifactId >
401
- <version >${jacoco.version} </version >
402
- <executions >
403
- <execution >
404
- <goals >
405
- <goal >prepare-agent</goal >
406
- </goals >
407
- </execution >
408
- </executions >
409
- </plugin >
410
- </plugins >
411
- </build >
412
- </profile >
413
-
414
383
<profile >
415
384
<id >default</id >
416
385
<activation >
Original file line number Diff line number Diff line change 1
1
# Required metadata
2
2
sonar.projectKey =weblogic-kubernetes-operator
3
3
sonar.projectName =WebLogic Kubernetes Operator
4
- sonar.projectVersion =2.2
4
+ sonar.projectVersion =3.3.0
5
5
# Comma-separated paths to directories with sources (required)
6
6
sonar.sources =operator/src/main/java
7
7
sonar.java.source =11
Original file line number Diff line number Diff line change 76
76
</dependency >
77
77
</dependencies >
78
78
79
+ <properties >
80
+ <sonar .coverage.jacoco.xmlReportPaths>${basedir} /../${aggregate.report.dir} </sonar .coverage.jacoco.xmlReportPaths>
81
+ </properties >
82
+
79
83
</project >
You can’t perform that action at this time.
0 commit comments