You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by pa...@apache.org on 2020/04/29 19:52:51 UTC

[sling-org-apache-sling-scripting-jsp] branch issues/SLING-9406 created (now ed3dc76)

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

pauls pushed a change to branch issues/SLING-9406
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp.git.


      at ed3dc76  SLING-9406: Add bundled script support to the servlets resolver

This branch includes the following new commits:

     new ed3dc76  SLING-9406: Add bundled script support to the servlets resolver

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[sling-org-apache-sling-scripting-jsp] 01/01: SLING-9406: Add bundled script support to the servlets resolver

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pauls pushed a commit to branch issues/SLING-9406
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp.git

commit ed3dc76b4c2835b58486d511775940b30ea8a1f5
Author: Karl Pauls <ka...@gmail.com>
AuthorDate: Wed Apr 29 21:52:31 2020 +0200

    SLING-9406: Add bundled script support to the servlets resolver
---
 pom.xml                                                             | 6 +++---
 .../java/org/apache/sling/scripting/jsp/PrecompiledJSPRunner.java   | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index cdb1eb2..512048c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -146,9 +146,9 @@
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
-            <artifactId>org.apache.sling.scripting.bundle.tracker</artifactId>
-            <version>0.1.1-SNAPSHOT</version>
-            <scope>provided</scope>
+            <artifactId>org.apache.sling.scripting.core</artifactId>
+            <version>2.2.1-SNAPSHOT</version>
+            <scope>compile</scope>
         </dependency>
     </dependencies>
 </project>
diff --git a/src/main/java/org/apache/sling/scripting/jsp/PrecompiledJSPRunner.java b/src/main/java/org/apache/sling/scripting/jsp/PrecompiledJSPRunner.java
index e39cbc4..63091bd 100644
--- a/src/main/java/org/apache/sling/scripting/jsp/PrecompiledJSPRunner.java
+++ b/src/main/java/org/apache/sling/scripting/jsp/PrecompiledJSPRunner.java
@@ -31,7 +31,7 @@ import org.apache.sling.api.SlingIOException;
 import org.apache.sling.api.SlingServletException;
 import org.apache.sling.api.scripting.SlingBindings;
 import org.apache.sling.commons.compiler.source.JavaEscapeHelper;
-import org.apache.sling.scripting.bundle.tracker.BundledRenderUnit;
+import org.apache.sling.scripting.core.BundledRenderUnit;
 import org.apache.sling.scripting.jsp.jasper.compiler.JspRuntimeContext;
 import org.apache.sling.scripting.jsp.jasper.runtime.AnnotationProcessor;
 import org.apache.sling.scripting.jsp.jasper.runtime.HttpJspBase;