Added javadocs to documentation build

Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
Kai Kreuzer 2015-10-01 11:53:06 +02:00
Родитель 0bed3f91b7
Коммит e7fb4711b5
3 изменённых файлов: 22 добавлений и 1 удалений

Просмотреть файл

@ -102,6 +102,9 @@
<li>
<a href="{{docu}}/development/testing.html">Testing</a>
</li>
<li>
<a href="{{docu}}/javadoc/index.html">API Reference</a>
</li>
</ul>
</li>
<li>

Просмотреть файл

@ -70,6 +70,24 @@
</resources>
</configuration>
</execution>
<execution>
<id>copy-javadoc</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/documentation/javadoc</outputDirectory>
<resources>
<resource>
<directory>${basedir}/../target/apidocs</directory>
<includes>
<include>**</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>

Просмотреть файл

@ -401,7 +401,7 @@
<configuration>
<!-- 'javadoc.opts' project property is set by the 'doclint-java8-disable' profile. It is important to keep 'javadoc' profile declaration after the declaration of 'doclint-java8-disable' profile. -->
<additionalparam>${javadoc.opts}</additionalparam>
<excludePackageNames>*.internal.*</excludePackageNames>
<excludePackageNames>*.internal.*,nl.*</excludePackageNames>
</configuration>
</plugin>
<plugin>