File tree 2 files changed +14
-10
lines changed
2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 43
43
key : ${{ runner.os }}-sonar
44
44
restore-keys : ${{ runner.os }}-sonar
45
45
- name : Build
46
- run : ./mvnw -B -V -ff -ntp install
46
+ run : ./mvnw -B -V -ff -ntp install javadoc:javadoc
47
47
- name : Analyze with SonarCloud
48
48
if : ${{ env.SONAR_TOKEN != null && env.SONAR_TOKEN != '' && matrix.java_version == '17' }}
49
49
env :
Original file line number Diff line number Diff line change 230
230
<plugin >
231
231
<groupId >org.apache.maven.plugins</groupId >
232
232
<artifactId >maven-javadoc-plugin</artifactId >
233
- <version >3.6.0</version >
234
- <configuration >
235
- <source >8</source >
236
- <doclint >none</doclint >
237
- <quiet >true</quiet >
238
- <notimestamp >true</notimestamp >
239
- </configuration >
240
233
<executions >
241
234
<execution >
242
235
<id >attach-javadocs</id >
316
309
<artifactId >maven-deploy-plugin</artifactId >
317
310
<version >3.1.1</version >
318
311
</plugin >
312
+ <plugin >
313
+ <groupId >org.apache.maven.plugins</groupId >
314
+ <artifactId >maven-javadoc-plugin</artifactId >
315
+ <version >3.6.0</version >
316
+ <configuration >
317
+ <source >8</source >
318
+ <doclint >none</doclint >
319
+ <quiet >true</quiet >
320
+ <notimestamp >true</notimestamp >
321
+ <legacyMode >true</legacyMode >
322
+ </configuration >
323
+ </plugin >
319
324
</plugins >
320
325
</pluginManagement >
321
326
<plugins >
322
327
<plugin >
323
328
<groupId >org.apache.maven.plugins</groupId >
324
329
<artifactId >maven-compiler-plugin</artifactId >
325
330
<configuration >
326
- <source >1.8</source >
327
- <target >1.8</target >
331
+ <release >8</release >
328
332
<fork >true</fork >
329
333
<parameters >true</parameters >
330
334
<showWarnings >true</showWarnings >
You can’t perform that action at this time.
0 commit comments