Skip to content

Commit 1ed91b7

Browse files
Merge pull request #47 from lwander/ignore-linter-on-java-8
Disable doclint when building with java8
2 parents ff1562b + 29c082c commit 1ed91b7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

kubernetes/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,15 @@
166166
</plugins>
167167
</build>
168168
</profile>
169+
<profile>
170+
<id>disable-java8-doclint</id>
171+
<activation>
172+
<jdk>[1.8,)</jdk>
173+
</activation>
174+
<properties>
175+
<additionalparam>-Xdoclint:none</additionalparam>
176+
</properties>
177+
</profile>
169178
</profiles>
170179

171180
<dependencies>

0 commit comments

Comments
 (0)