You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ra...@apache.org on 2020/09/25 18:28:03 UTC

[sling-htl-maven-plugin] branch master updated: SLING-9696 - HTL does not correctly cast the "false" string to Boolean SLING-9706 - The HTL Java Compiler does not correctly negate equals

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

radu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-htl-maven-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 994934b  SLING-9696 - HTL does not correctly cast the "false" string to Boolean SLING-9706 - The HTL Java Compiler does not correctly negate equals
994934b is described below

commit 994934b8743039e84cd694542c95ea7060969ded
Author: Radu Cotescu <ra...@apache.org>
AuthorDate: Fri Sep 25 20:26:27 2020 +0200

    SLING-9696 - HTL does not correctly cast the "false" string to Boolean
    SLING-9706 - The HTL Java Compiler does not correctly negate equals
---
 pom.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index 6d16ef6..cc9156a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,7 +50,7 @@
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <site.jira.version.id>12336741,12338350,12338646,12338974,12341271,12342047,12342267,12342272,12343462,
-            12343846,12344079,12344332,12344876,12345571,12346551,12346590,12346596</site.jira.version.id>
+            12343846,12344079,12344332,12344876,12345571,12346551,12346590,12346596,12348677</site.jira.version.id>
         <maven.version>3.3.9</maven.version>
         <maven.site.path>${project.artifactId}-archives/${project.artifactId}-LATEST</maven.site.path>
         <sightly.runtime.version>1.2.0-1.4.0</sightly.runtime.version>
@@ -93,22 +93,22 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.commons.compiler</artifactId>
-            <version>2.4.1-SNAPSHOT</version>
+            <version>2.4.0</version>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.scripting.sightly.runtime</artifactId>
-            <version>${sightly.runtime.version}</version>
+            <version>1.2.5-1.4.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.scripting.sightly.compiler</artifactId>
-            <version>1.2.7-1.4.0-SNAPSHOT</version>
+            <version>1.2.9-1.4.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.scripting.sightly.compiler.java</artifactId>
-            <version>1.2.1-1.4.0-SNAPSHOT</version>
+            <version>1.2.3-1.4.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>commons-io</groupId>