This is an automated email from the ASF dual-hosted git repository.
benw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
The following commit(s) were added to refs/heads/master by this push:
new d069a3258 TAP5-2716: Google Closure Compiler dependency required for
webresources
d069a3258 is described below
commit d069a3258d413c222b7b4b52ea284daa89ae7b90
Author: Ben Weidig <[email protected]>
AuthorDate: Mon Apr 4 18:55:56 2022 +0200
TAP5-2716: Google Closure Compiler dependency required for webresources
The org.apache.tapestry5.webresources.GoogleClosureMinimizerOptionsProvider
was added in 5.7 and requires the dependency if it's overriden, so the
dependency needs to be 'api' instead of 'implementation'.
---
tapestry-webresources/build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tapestry-webresources/build.gradle
b/tapestry-webresources/build.gradle
index 32f76f890..e47d66df0 100644
--- a/tapestry-webresources/build.gradle
+++ b/tapestry-webresources/build.gradle
@@ -9,7 +9,7 @@ description = "Integration with WRO4J to perform runtime
CoffeeScript compilatio
dependencies {
implementation project(":tapestry-core")
implementation "com.github.sommeri:less4j:1.12.0"
- implementation "com.google.javascript:closure-compiler-unshaded:v20200504"
+ api "com.google.javascript:closure-compiler-unshaded:v20200504"
compileOnly "com.google.auto.value:auto-value-annotations:1.9"