This is an automated email from the ASF dual-hosted git repository.
robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/main by this push:
new 66ac39eb81 ARTEMIS-3971: set -noindex to exclude various .js files
from javadoc output
66ac39eb81 is described below
commit 66ac39eb8157414af7b05c3a59e1bc493daf4be6
Author: Robbie Gemmell <[email protected]>
AuthorDate: Tue Sep 6 17:23:56 2022 +0100
ARTEMIS-3971: set -noindex to exclude various .js files from javadoc output
---
artemis-core-client/pom.xml | 1 +
artemis-jms-client/pom.xml | 1 +
artemis-jms-server/pom.xml | 1 +
artemis-server/pom.xml | 1 +
artemis-website/pom.xml | 3 ++-
pom.xml | 4 ++++
6 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/artemis-core-client/pom.xml b/artemis-core-client/pom.xml
index 6270a48b53..c7426f8c1d 100644
--- a/artemis-core-client/pom.xml
+++ b/artemis-core-client/pom.xml
@@ -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
diff --git a/artemis-jms-client/pom.xml b/artemis-jms-client/pom.xml
index 62897a0363..00510607a3 100644
--- a/artemis-jms-client/pom.xml
+++ b/artemis-jms-client/pom.xml
@@ -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>
diff --git a/artemis-jms-server/pom.xml b/artemis-jms-server/pom.xml
index 89ad1bbec4..5524665c8d 100644
--- a/artemis-jms-server/pom.xml
+++ b/artemis-jms-server/pom.xml
@@ -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>
diff --git a/artemis-server/pom.xml b/artemis-server/pom.xml
index ac18f68474..3975f0e856 100644
--- a/artemis-server/pom.xml
+++ b/artemis-server/pom.xml
@@ -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
diff --git a/artemis-website/pom.xml b/artemis-website/pom.xml
index 96eb66c2ec..25ed646d51 100644
--- a/artemis-website/pom.xml
+++ b/artemis-website/pom.xml
@@ -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>
diff --git a/pom.xml b/pom.xml
index 94e4850fed..b5fb36e8db 100644
--- a/pom.xml
+++ b/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>