Skip to content

Commit 3cae52b

Browse files
committed
Fix javadoc generation with JDK 11
1 parent 5f644f7 commit 3cae52b

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

api/src/main/java/org/sonarsource/scanner/api/ScanProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package org.sonarsource.scanner.api;
2121

2222
/**
23-
* Most commonly used properties for a SonarQube analysis. These properties are passed to {@link EmbeddedScanner#runAnalysis(java.util.Properties)}.
23+
* Most commonly used properties for a SonarQube analysis. These properties are passed to EmbeddedScanner#runAnalysis(java.util.Properties).
2424
* See <a href="http://docs.sonarqube.org/display/SONAR/Analysis+Parameters">documentation</a> for more properties.
2525
*
2626
* @since 2.2

api/src/main/java/org/sonarsource/scanner/api/ScannerProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package org.sonarsource.scanner.api;
2121

2222
/**
23-
* Mostly used properties that can be passed to {@link EmbeddedScanner#addGlobalProperties(java.util.Properties)}.
23+
* Mostly used properties that can be passed to EmbeddedScanner#addGlobalProperties(java.util.Properties).
2424
* See <a href="http://docs.sonarqube.org/display/SONAR/Analysis+Parameters">documentation</a> for more properties.
2525
*
2626
* @since 2.2

pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@
6464
<plugin>
6565
<groupId>org.apache.maven.plugins</groupId>
6666
<artifactId>maven-javadoc-plugin</artifactId>
67-
<version>2.9</version>
67+
<version>3.1.0</version>
68+
<configuration>
69+
<source>8</source>
70+
</configuration>
6871
<executions>
6972
<execution>
7073
<id>attach-javadocs</id>

0 commit comments

Comments
 (0)