ARTEMIS-3971: set -noindex to exclude various .js files from javadoc output
This commit is contained in:
parent
1248877f6c
commit
66ac39eb81
|
@ -164,6 +164,7 @@
|
|||
<useStandardDocletOptions>true</useStandardDocletOptions>
|
||||
<minmemory>128m</minmemory>
|
||||
<maxmemory>512m</maxmemory>
|
||||
<noindex>true</noindex>
|
||||
<quiet>false</quiet>
|
||||
<aggregate>true</aggregate>
|
||||
<excludePackageNames>org.apache.activemq.artemis.core:org.apache.activemq.artemis.utils,org.apache.activemq.artemis.commons
|
||||
|
|
|
@ -82,6 +82,7 @@
|
|||
<useStandardDocletOptions>true</useStandardDocletOptions>
|
||||
<minmemory>128m</minmemory>
|
||||
<maxmemory>512m</maxmemory>
|
||||
<noindex>true</noindex>
|
||||
<quiet>false</quiet>
|
||||
<aggregate>true</aggregate>
|
||||
<excludePackageNames>org.apache.activemq.artemis.core:org.apache.activemq.artemis.utils</excludePackageNames>
|
||||
|
|
|
@ -100,6 +100,7 @@
|
|||
<useStandardDocletOptions>true</useStandardDocletOptions>
|
||||
<minmemory>128m</minmemory>
|
||||
<maxmemory>512m</maxmemory>
|
||||
<noindex>true</noindex>
|
||||
<quiet>false</quiet>
|
||||
<aggregate>true</aggregate>
|
||||
<excludePackageNames>org.apache.activemq.artemis.core:org.apache.activemq.artemis.utils</excludePackageNames>
|
||||
|
|
|
@ -260,6 +260,7 @@
|
|||
<useStandardDocletOptions>true</useStandardDocletOptions>
|
||||
<minmemory>128m</minmemory>
|
||||
<maxmemory>512m</maxmemory>
|
||||
<noindex>true</noindex>
|
||||
<quiet>false</quiet>
|
||||
<aggregate>true</aggregate>
|
||||
<excludePackageNames>org.apache.activemq.artemis.core:org.apache.activemq.artemis.utils
|
||||
|
|
|
@ -63,9 +63,9 @@
|
|||
<doctitle>ActiveMQ Artemis ${project.version} API Placeholder</doctitle>
|
||||
<minmemory>128m</minmemory>
|
||||
<maxmemory>512m</maxmemory>
|
||||
<noindex>true</noindex>
|
||||
<skip>${skipPlaceholderJavadocGeneration}</skip>
|
||||
<javadocDirectory>${placeholderJavadocDir}</javadocDirectory>
|
||||
<noindex>true</noindex>
|
||||
<nohelp>true</nohelp>
|
||||
<notimestamp>true</notimestamp>
|
||||
<notree>true</notree>
|
||||
|
@ -146,6 +146,7 @@
|
|||
<source>8</source>
|
||||
<minmemory>128m</minmemory>
|
||||
<maxmemory>512m</maxmemory>
|
||||
<noindex>true</noindex>
|
||||
<skip>${skipWebsiteJavadocGeneration}</skip>
|
||||
<!-- switch on dependency-driven aggregation -->
|
||||
<includeDependencySources>true</includeDependencySources>
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -1853,6 +1853,9 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<noindex>true</noindex>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
@ -1966,6 +1969,7 @@
|
|||
<configuration>
|
||||
<minmemory>128m</minmemory>
|
||||
<maxmemory>1024m</maxmemory>
|
||||
<noindex>true</noindex>
|
||||
<quiet>false</quiet>
|
||||
<!-- XXX FIXME 'aggregate' is deprecated -->
|
||||
<aggregate>true</aggregate>
|
||||
|
|
Loading…
Reference in New Issue