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 2020/10/18 22:30:48 UTC

[tapestry-5] branch java9modules updated: TAP5-2644: trying to fix test failure in ClojureBuilderSpec

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

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


The following commit(s) were added to refs/heads/java9modules by this push:
     new 598c382  TAP5-2644: trying to fix test failure in ClojureBuilderSpec
598c382 is described below

commit 598c382fe60ef9f409bcf4c2087a9758d1d69414
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Sun Oct 18 19:30:27 2020 -0300

    TAP5-2644: trying to fix test failure in ClojureBuilderSpec
---
 .../src/main/java/org/apache/tapestry5/modules/TapestryModule.java     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/modules/TapestryModule.java b/tapestry-core/src/main/java/org/apache/tapestry5/modules/TapestryModule.java
index 56b8e08..e8b9fa4 100644
--- a/tapestry-core/src/main/java/org/apache/tapestry5/modules/TapestryModule.java
+++ b/tapestry-core/src/main/java/org/apache/tapestry5/modules/TapestryModule.java
@@ -123,6 +123,7 @@ import org.apache.tapestry5.http.internal.services.RequestImpl;
 import org.apache.tapestry5.http.internal.services.ResponseImpl;
 import org.apache.tapestry5.http.internal.services.TapestrySessionFactory;
 import org.apache.tapestry5.http.internal.services.TapestrySessionFactoryImpl;
+import org.apache.tapestry5.http.modules.TapestryHttpModule;
 import org.apache.tapestry5.http.services.ApplicationGlobals;
 import org.apache.tapestry5.http.services.ApplicationInitializer;
 import org.apache.tapestry5.http.services.ApplicationInitializerFilter;
@@ -396,7 +397,7 @@ import org.slf4j.Logger;
  */
 @Marker(Core.class)
 @ImportModule(
-        {InternalModule.class, AssetsModule.class, PageLoadModule.class, JavaScriptModule.class, CompatibilityModule.class, DashboardModule.class})
+        {InternalModule.class, AssetsModule.class, PageLoadModule.class, JavaScriptModule.class, CompatibilityModule.class, DashboardModule.class, TapestryHttpModule.class})
 public final class TapestryModule
 {
     private final PipelineBuilder pipelineBuilder;