You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by be...@apache.org on 2022/04/05 07:38:42 UTC

[tapestry-5] branch master updated: TAP5-2716: fixing tapestry-webresources dependencies

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 c0d888e7b TAP5-2716: fixing tapestry-webresources dependencies
c0d888e7b is described below

commit c0d888e7b720d47b4912bbf3b61420029d2f0cfb
Author: Ben Weidig <be...@netzgut.net>
AuthorDate: Tue Apr 5 09:38:34 2022 +0200

    TAP5-2716: fixing tapestry-webresources dependencies
    
    Google Closure Compiler also relies on StreamableResource, which resides in tapestry-core, so it should be api, too.
---
 tapestry-webresources/build.gradle | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/tapestry-webresources/build.gradle b/tapestry-webresources/build.gradle
index e47d66df0..637d7122f 100644
--- a/tapestry-webresources/build.gradle
+++ b/tapestry-webresources/build.gradle
@@ -7,9 +7,9 @@ description = "Integration with WRO4J to perform runtime CoffeeScript compilatio
 //}
 
 dependencies {
-    implementation project(":tapestry-core")
+    api            project(":tapestry-core")
+    api            "com.google.javascript:closure-compiler-unshaded:v20200504"
     implementation "com.github.sommeri:less4j:1.12.0"
-    api "com.google.javascript:closure-compiler-unshaded:v20200504"
     
     compileOnly    "com.google.auto.value:auto-value-annotations:1.9"
     
@@ -30,7 +30,6 @@ dependencies {
         exclude group: "org.eclipse.jetty"
     }
     testImplementation ("io.github.bonigarcia:webdrivermanager:2.2.4")
-    
 }
 
 jar.manifest {