File tree Expand file tree Collapse file tree 7 files changed +30
-89
lines changed Expand file tree Collapse file tree 7 files changed +30
-89
lines changed Original file line number Diff line number Diff line change @@ -171,12 +171,12 @@ jobs:
171
171
- load_cache
172
172
- run :
173
173
name : mvn dependency:tree
174
- command : mvn -am -pl test-functional-run dependency:tree -Dshaded=<<parameters.shaded>> <<parameters.args>>
174
+ command : mvn -am -pl test-functional dependency:tree -Dshaded=<<parameters.shaded>> <<parameters.args>>
175
175
- run :
176
176
name : Test
177
- command : mvn -am -pl test-functional-run package -Dshaded=<<parameters.shaded>> <<parameters.args>>
177
+ command : mvn -am -pl test-functional package -Dshaded=<<parameters.shaded>> <<parameters.args>>
178
178
- report :
179
- working_directory : test-functional-run
179
+ working_directory : test-functional
180
180
- store_cache
181
181
182
182
test-non-func :
@@ -201,7 +201,7 @@ jobs:
201
201
name : Test
202
202
command : mvn -am -pl test-non-functional package -Dshaded=<<parameters.shaded>>
203
203
- report :
204
- working_directory : test-functional-run
204
+ working_directory : test-functional
205
205
- store_cache
206
206
207
207
test-ssl :
@@ -245,7 +245,7 @@ jobs:
245
245
key : sonar-{{ .Environment.CIRCLE_JOB }}-{{ checksum "/tmp/maven_cache_seed" }}
246
246
- run :
247
247
name : Test
248
- command : mvn -Pstatic-code-analysis -am -pl test-functional-run test
248
+ command : mvn -Pstatic-code-analysis -am -pl test-functional test
249
249
- run :
250
250
name : Analyze
251
251
command : mvn -DnoTests -Dmaven.test.skip=true -Dgpg.skip=true -Dmaven.javadoc.skip=true verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=arangodb_arangodb-java-driver
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ mvn versions:display-plugin-updates
30
30
## Code Analysis
31
31
Analyze (Spotbugs and JaCoCo):
32
32
```
33
- mvn -Pstatic-code-analysis -am -pl test-functional-run test
33
+ mvn -Pstatic-code-analysis -am -pl test-functional test
34
34
mvn -Dgpg.skip=true -Dmaven.javadoc.skip=true -am -pl core verify
35
35
```
36
36
Reports:
Original file line number Diff line number Diff line change 35
35
<module >test-functional</module >
36
36
<module >test-native</module >
37
37
<module >test-non-functional</module >
38
- <module >test-functional-run</module >
39
38
<module >test-resilience</module >
40
39
</modules >
41
40
</profile >
Original file line number Diff line number Diff line change 157
157
</execution >
158
158
</executions >
159
159
<configuration >
160
- <dataFile >../test-functional-run /target/jacoco.exec</dataFile >
160
+ <dataFile >../test-functional/target/jacoco.exec</dataFile >
161
161
</configuration >
162
162
</plugin >
163
163
</plugins >
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 13
13
14
14
<artifactId >test-functional</artifactId >
15
15
16
- <build >
17
- <plugins >
18
- <plugin >
19
- <groupId >org.apache.maven.plugins</groupId >
20
- <artifactId >maven-surefire-plugin</artifactId >
21
- <configuration >
22
- <skipTests >true</skipTests >
23
- </configuration >
24
- </plugin >
25
- </plugins >
26
- </build >
27
-
28
16
<profiles >
29
17
<profile >
30
18
<id >shaded</id >
62
50
</plugins >
63
51
</build >
64
52
</profile >
53
+ <profile >
54
+ <id >static-code-analysis</id >
55
+ <build >
56
+ <plugins >
57
+ <plugin >
58
+ <groupId >org.jacoco</groupId >
59
+ <artifactId >jacoco-maven-plugin</artifactId >
60
+ <executions >
61
+ <execution >
62
+ <goals >
63
+ <goal >prepare-agent</goal >
64
+ </goals >
7E87
65
+ </execution >
66
+ </executions >
67
+ <configuration >
68
+ <includes >
69
+ <include >com/arangodb/**</include >
70
+ </includes >
71
+ </configuration >
72
+ </plugin >
73
+ </plugins >
74
+ </build >
75
+ </profile >
65
76
</profiles >
66
77
67
78
</project >
You can’t perform that action at this time.
0 commit comments