You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by th...@apache.org on 2021/02/14 17:44:51 UTC

[tapestry-5] branch 5.6.x updated: Trying to fix aggregateJavadoc issue with closuer compiler

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

thiagohp pushed a commit to branch 5.6.x
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/5.6.x by this push:
     new 6f631e9  Trying to fix aggregateJavadoc issue with closuer compiler
6f631e9 is described below

commit 6f631e9abf8cc08bd269e6aaa1e2f02f5fdf99df
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Sun Feb 14 14:44:41 2021 -0300

    Trying to fix aggregateJavadoc issue with closuer compiler
---
 build.gradle | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/build.gradle b/build.gradle
index 1108948..a3a4a27 100755
--- a/build.gradle
+++ b/build.gradle
@@ -330,6 +330,8 @@ task aggregateJavadoc(type: Javadoc) {
 
     def tapestryStylesheet = file("src/javadoc/stylesheet7.css")
     int thisYear = java.time.Year.now().getValue()
+    delete("~/.gradle/caches/modules-2/files-2.1/com.google.javascript/closure-compiler-unshaded");
+    
 
     configure(options) {
         splitIndex true
@@ -347,6 +349,7 @@ task aggregateJavadoc(type: Javadoc) {
         exclude "org/apache/tapestry5/internal/plastic/asm/**"
         exclude "org/apache/tapestry5/internal/webresources/**"
         exclude "org/apache/tapestry5/webresources/modules/**"
+        exclude "org/apache/tapestry5/webresources/**"
     }
 
     def allMainSourceSets = subprojects*.sourceSets*.main.flatten()