This is an automated email from the ASF dual-hosted git repository.

ashishvijaywargiya pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/trunk by this push:
     new a864204df6 Fixed: javadoc build fails with connection timeout fetching 
Groovy external docs (#1709)
a864204df6 is described below

commit a864204df6ea7af16e38781e1d76837c7486d7c6
Author: Ashish Vijaywargiya <[email protected]>
AuthorDate: Mon Aug 24 15:42:37 2026 +0530

    Fixed: javadoc build fails with connection timeout fetching Groovy external 
docs (#1709)
    
    The javadoc task's links() config referenced the Groovy API docs over
    plain http, which is slow/unreliable and was timing out on CI while the
    same host responds quickly over https. Switched to https, matching the
    other external javadoc links already in this block.
---
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index fa8510c50a..42f12f93e9 100644
--- a/build.gradle
+++ b/build.gradle
@@ -164,7 +164,7 @@ javadoc {
         links(
             'https://docs.oracle.com/en/java/javase/17/docs/api/',
             'https://tomcat.apache.org/tomcat-10.1-doc/servletapi/',
-            'http://docs.groovy-lang.org/docs/groovy-4.0.22/html/api',
+            'https://docs.groovy-lang.org/docs/groovy-4.0.22/html/api',
             'https://commons.apache.org/proper/commons-cli/apidocs'
         )
     }

Reply via email to