Fix JavaDoc compilation

This commit is contained in:
Alex Mukha
2019-05-15 17:09:50 +01:00
parent 12a2bb249e
commit 21c63e382c

View File

@@ -26,6 +26,7 @@
<properties>
<!-- please run mvn clean install -DSkipTests in order to have shared-resources available -->
<suiteXmlFile>src/main/resources/shared-resources/testCount.xml</suiteXmlFile>
<maven.build.sourceVersion>11</maven.build.sourceVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<tas.utility.version>2.0.22</tas.utility.version>
<rest-assured.version>3.3.0</rest-assured.version>
@@ -127,6 +128,21 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>