(struts) 01/01: WW-5529 Drops unused misleading setter setMaxLength in favour of setMaxlength

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch fix/WW-5529-maxlength-s7
in repository https://gitbox.apache.org/repos/asf/struts.git

commit e681b1a2a5876358bc81450f6fc1e6c5ddaf0031
Author: Lukasz Lenart 
AuthorDate: Mon Feb 17 09:03:07 2025 +0100

WW-5529 Drops unused misleading setter setMaxLength in favour of 
setMaxlength
---
 .../org/apache/struts2/components/TextField.java   | 27 --
 1 file changed, 10 insertions(+), 17 deletions(-)

diff --git a/core/src/main/java/org/apache/struts2/components/TextField.java 
b/core/src/main/java/org/apache/struts2/components/TextField.java
index 90f50e519..726c4fc5b 100644
--- a/core/src/main/java/org/apache/struts2/components/TextField.java
+++ b/core/src/main/java/org/apache/struts2/components/TextField.java
@@ -18,13 +18,12 @@
  */
 package org.apache.struts2.components;
 
+import jakarta.servlet.http.HttpServletRequest;
+import jakarta.servlet.http.HttpServletResponse;
 import org.apache.struts2.util.ValueStack;
 import org.apache.struts2.views.annotations.StrutsTag;
 import org.apache.struts2.views.annotations.StrutsTagAttribute;
 
-import jakarta.servlet.http.HttpServletRequest;
-import jakarta.servlet.http.HttpServletResponse;
-
 /**
  * 
  * Render an HTML input field of type text
@@ -50,17 +49,16 @@ import jakarta.servlet.http.HttpServletResponse;
  * 
  */
 @StrutsTag(
-name="textfield",
-tldTagClass="org.apache.struts2.views.jsp.ui.TextFieldTag",
-description="Render an HTML input field of type text",
-allowDynamicAttributes=true)
+name = "textfield",
+tldTagClass = "org.apache.struts2.views.jsp.ui.TextFieldTag",
+description = "Render an HTML input field of type text",
+allowDynamicAttributes = true)
 public class TextField extends UIBean {
 /**
  * The name of the default template for the TextFieldTag
  */
 final public static String TEMPLATE = "text";
 
-
 protected String maxlength;
 protected String readonly;
 protected String size;
@@ -95,27 +93,22 @@ public class TextField extends UIBean {
 
 }
 
-@StrutsTagAttribute(description="HTML maxlength attribute", type="Integer")
+@StrutsTagAttribute(description = "HTML maxlength attribute", type = 
"Integer")
 public void setMaxlength(String maxlength) {
 this.maxlength = maxlength;
 }
 
-@StrutsTagAttribute(description="Deprecated. Use maxlength instead.", 
type="Integer")
-public void setMaxLength(String maxlength) {
-this.maxlength = maxlength;
-}
-
-@StrutsTagAttribute(description="Whether the input is readonly", 
type="Boolean", defaultValue="false")
+@StrutsTagAttribute(description = "Whether the input is readonly", type = 
"Boolean", defaultValue = "false")
 public void setReadonly(String readonly) {
 this.readonly = readonly;
 }
 
-@StrutsTagAttribute(description="HTML size attribute",  type="Integer")
+@StrutsTagAttribute(description = "HTML size attribute", type = "Integer")
 public void setSize(String size) {
 this.size = size;
 }
 
-@StrutsTagAttribute(description="Specifies the html5 type element to 
display. e.g. text, email, url", defaultValue="text")
+@StrutsTagAttribute(description = "Specifies the html5 type element to 
display. e.g. text, email, url", defaultValue = "text")
 public void setType(String type) {
 this.type = type;
 }



(struts) branch fix/WW-5529-maxlength-s7 created (now e681b1a2a)

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch fix/WW-5529-maxlength-s7
in repository https://gitbox.apache.org/repos/asf/struts.git


  at e681b1a2a WW-5529 Drops unused misleading setter setMaxLength in 
favour of setMaxlength

This branch includes the following new commits:

 new e681b1a2a WW-5529 Drops unused misleading setter setMaxLength in 
favour of setMaxlength

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.




svn commit: r74937 - /dev/struts/7.0.3/

2025-02-17 Thread lukaszlenart
Author: lukaszlenart
Date: Mon Feb 17 10:29:46 2025
New Revision: 74937

Log:
Updates test release 7.0.3

Added:
dev/struts/7.0.3/
dev/struts/7.0.3/struts-7.0.3-all.zip   (with props)
dev/struts/7.0.3/struts-7.0.3-all.zip.asc
dev/struts/7.0.3/struts-7.0.3-all.zip.sha256
dev/struts/7.0.3/struts-7.0.3-all.zip.sha512
dev/struts/7.0.3/struts-7.0.3-apps.zip   (with props)
dev/struts/7.0.3/struts-7.0.3-apps.zip.asc
dev/struts/7.0.3/struts-7.0.3-apps.zip.sha256
dev/struts/7.0.3/struts-7.0.3-apps.zip.sha512
dev/struts/7.0.3/struts-7.0.3-docs.zip   (with props)
dev/struts/7.0.3/struts-7.0.3-docs.zip.asc
dev/struts/7.0.3/struts-7.0.3-docs.zip.sha256
dev/struts/7.0.3/struts-7.0.3-docs.zip.sha512
dev/struts/7.0.3/struts-7.0.3-lib.zip   (with props)
dev/struts/7.0.3/struts-7.0.3-lib.zip.asc
dev/struts/7.0.3/struts-7.0.3-lib.zip.sha256
dev/struts/7.0.3/struts-7.0.3-lib.zip.sha512
dev/struts/7.0.3/struts-7.0.3-min-lib.zip   (with props)
dev/struts/7.0.3/struts-7.0.3-min-lib.zip.asc
dev/struts/7.0.3/struts-7.0.3-min-lib.zip.sha256
dev/struts/7.0.3/struts-7.0.3-min-lib.zip.sha512
dev/struts/7.0.3/struts-7.0.3-src.zip   (with props)
dev/struts/7.0.3/struts-7.0.3-src.zip.asc
dev/struts/7.0.3/struts-7.0.3-src.zip.sha256
dev/struts/7.0.3/struts-7.0.3-src.zip.sha512

Added: dev/struts/7.0.3/struts-7.0.3-all.zip
==
Binary file - no diff available.

Propchange: dev/struts/7.0.3/struts-7.0.3-all.zip
--
svn:mime-type = application/octet-stream

Added: dev/struts/7.0.3/struts-7.0.3-all.zip.asc
==
--- dev/struts/7.0.3/struts-7.0.3-all.zip.asc (added)
+++ dev/struts/7.0.3/struts-7.0.3-all.zip.asc Mon Feb 17 10:29:46 2025
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+
+iQJMBAABCgA2FiEEDgCGmDROYrkGM7fGKEFhBmOvux8FAmezCJcYHGx1a2Fzemxl
+bmFydEBhcGFjaGUub3JnAAoJEChBYQZjr7sf0WAP/iCuYOmeU4K+uGGMZDASX/dj
+Q3ECdEuSCuzmVylxMWENpLiH9xvWGcL92JMPXwjSb7foOsfx1JPLj5x1o2/bFbhx
+DciUeKbZn1SD/F7rqn4eqnCtAKnpYlRSEe9rUfK4gbkFhuvhJuzdmoNdr+SHLNIM
+dwFHTKPLhrYZtdp7mcVVwkqjPnU0o1ZgJBCgdYSg/h3yjnp/hIMy4Fq+pbWVdHUe
+tpL519qmMZVQNqV1xlbSZp0Snj9JXUd0DOWQu7MsvMeJIHqBrtnHQlTrWN5OS6Iz
+pPPpNfTMSXjlabEUN1S8OA+ttRz5YG446ZkqDZdR5Rd+wqHrshEqaN+vAM1s3i3F
+x19YZyfB2V4Lv1GiZ/LOjyrbSfcfdul2O6l/fWZk4fneLSRyobP/YW3kar0lzRCr
+8NJIM/PiyD5EAs7OB9djX3tZLKU6rIJXE6S/iWYrsMp3NlGZAqU+8c22XEU2Pw2a
+0XGsM/0q9kwPXeT2GiNnla8qkIIByDzSeA7u15BDzab8pcFm3U/ExYXyKwdGlLiX
+/Y4lYyGFkR0sAoA9U06pwC09OOi3EecCqm5yI9yDX0YCI0GDxtGHZFLrueqg6dTX
+uBzQ+Ta6EjacZmhv045onAHEjJ2I1A7R0DX9vMvfQSixA0kanJ83OToli0Tx4gmm
+GOeGjzoEF+NAbqsxnKY7
+=E5Cs
+-END PGP SIGNATURE-

Added: dev/struts/7.0.3/struts-7.0.3-all.zip.sha256
==
--- dev/struts/7.0.3/struts-7.0.3-all.zip.sha256 (added)
+++ dev/struts/7.0.3/struts-7.0.3-all.zip.sha256 Mon Feb 17 10:29:46 2025
@@ -0,0 +1 @@
+1fa8f3a83b9bdfdf753cad12356e4758e4dec8f893a30fa25a4979f12a7500ca  
struts-7.0.3-all.zip

Added: dev/struts/7.0.3/struts-7.0.3-all.zip.sha512
==
--- dev/struts/7.0.3/struts-7.0.3-all.zip.sha512 (added)
+++ dev/struts/7.0.3/struts-7.0.3-all.zip.sha512 Mon Feb 17 10:29:46 2025
@@ -0,0 +1 @@
+9d688a141a5c03f212df7e4b484c9bd9b4509a70df3e09bb9a329c4365c8e4ec18c055253babb14b1d2bc28436b32e75504b378047e938a14ea40eb62587d0f9
  struts-7.0.3-all.zip

Added: dev/struts/7.0.3/struts-7.0.3-apps.zip
==
Binary file - no diff available.

Propchange: dev/struts/7.0.3/struts-7.0.3-apps.zip
--
svn:mime-type = application/octet-stream

Added: dev/struts/7.0.3/struts-7.0.3-apps.zip.asc
==
--- dev/struts/7.0.3/struts-7.0.3-apps.zip.asc (added)
+++ dev/struts/7.0.3/struts-7.0.3-apps.zip.asc Mon Feb 17 10:29:46 2025
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+
+iQJMBAABCgA2FiEEDgCGmDROYrkGM7fGKEFhBmOvux8FAmezCJcYHGx1a2Fzemxl
+bmFydEBhcGFjaGUub3JnAAoJEChBYQZjr7sf/RgQAI1tQVp57UVgwniIRQQnJZdo
+1di61hGrg/ElanUAraCg1TcmM3Jow2SRGPvWJXiaYadTPIuPlAgJCN6IYqKEphtS
+stuPrtS8w49tuv2ajZy+Vk7mwchTLQiWGEe66dmpd8s4oUQgaIrzIGLtSADMVmex
+vVFyHo/LRv9lNxuIKP0n61B8UMd1ImR5NN7Yc/nh+UvQurrJAAUZO/lkFPozcnbu
+X0oZ2lSiqyjOoutb4VLHgxPN/E+TMU5uI5Uk2PqI4pniQmxGHnhrmgoca+6UaAv7
+d1aLgITzzGULylNEnJD6LIZeRXdN7bX/vzSaVsXGfQ2LmclYXirWc1g0zGExshZn
+JxROc/L52XRTiar3WW1oXLBmsB4z7ia0nExCoPOWx2XLSMTzvOYirAYtaidUNyIl
+adr89kyPYZ4Cdd9y1dBQ2SHjxT+diAN05U/5croDDaFJV2Iwg9BYa7WkgvDXF41M
+Z78C+TM7lMB9MemTC6Ujw9/vmsZC5Qc4q6y36G0W0PiNqIWBKeLTE8MG/OGNmsHX
+soUfove64ZAFkYRvbYLC7wPZZ3so/FgIlNq87b7ZPOvkUIWe

(struts) branch fix/WW-5529-maxlength deleted (was 15ec67bd9)

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch fix/WW-5529-maxlength
in repository https://gitbox.apache.org/repos/asf/struts.git


 was 15ec67bd9 WW-5529 Drops unused misleading setter setMaxLength in 
favour of setMaxlength (#1221)

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(struts) branch release/struts-6-7-x updated (9b044377a -> ef90b3ba3)

2025-02-17 Thread kusal
This is an automated email from the ASF dual-hosted git repository.

kusal pushed a change to branch release/struts-6-7-x
in repository https://gitbox.apache.org/repos/asf/struts.git


from 9b044377a WW-5501 Reverts all changes related to WW-5501 (#1218)
 add 583b174fe WW-5525 Fix NPE in ProxyUtil for SecurityMemberAccess 
originating static members
 add d35ec15c7 WW-5525 Fixes NPE when checking if expressions is acceptable
 new ef90b3ba3 Merge pull request #1220 from apache/WW-5525-proxyutil-npe-67

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.


Summary of changes:
 .../xwork2/ognl/SecurityMemberAccess.java  |  5 +-
 .../com/opensymphony/xwork2/util/ProxyUtil.java|  3 +-
 .../xwork2/ognl/OgnlValueStackTest.java| 28 +++
 .../xwork2/ognl/SecurityMemberAccessProxyTest.java | 88 ++
 .../xwork2/spring/SpringProxyUtilTest.java |  2 +
 5 files changed, 124 insertions(+), 2 deletions(-)



(struts) 01/01: Merge pull request #1220 from apache/WW-5525-proxyutil-npe-67

2025-02-17 Thread kusal
This is an automated email from the ASF dual-hosted git repository.

kusal pushed a commit to branch release/struts-6-7-x
in repository https://gitbox.apache.org/repos/asf/struts.git

commit ef90b3ba3c002804adffbbf88f4818ba33dbed25
Merge: 9b044377a d35ec15c7
Author: Kusal Kithul-Godage 
AuthorDate: Mon Feb 17 19:11:21 2025 +1100

Merge pull request #1220 from apache/WW-5525-proxyutil-npe-67

6.7: WW-5525 Fix NPE in ProxyUtil for SecurityMemberAccess originating 
static members

 .../xwork2/ognl/SecurityMemberAccess.java  |  5 +-
 .../com/opensymphony/xwork2/util/ProxyUtil.java|  3 +-
 .../xwork2/ognl/OgnlValueStackTest.java| 28 +++
 .../xwork2/ognl/SecurityMemberAccessProxyTest.java | 88 ++
 .../xwork2/spring/SpringProxyUtilTest.java |  2 +
 5 files changed, 124 insertions(+), 2 deletions(-)



(struts) branch WW-5525-proxyutil-npe-67 deleted (was d35ec15c7)

2025-02-17 Thread kusal
This is an automated email from the ASF dual-hosted git repository.

kusal pushed a change to branch WW-5525-proxyutil-npe-67
in repository https://gitbox.apache.org/repos/asf/struts.git


 was d35ec15c7 WW-5525 Fixes NPE when checking if expressions is acceptable

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(struts) branch main updated: WW-5529 Drops unused misleading setter setMaxLength in favour of setMaxlength (#1221)

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/main by this push:
 new 556522e9b WW-5529 Drops unused misleading setter setMaxLength in 
favour of setMaxlength (#1221)
556522e9b is described below

commit 556522e9b27af39e1fe19ff420364da169fd308c
Author: Lukasz Lenart 
AuthorDate: Mon Feb 17 10:09:14 2025 +0100

WW-5529 Drops unused misleading setter setMaxLength in favour of 
setMaxlength (#1221)
---
 .../org/apache/struts2/components/TextField.java   | 27 --
 1 file changed, 10 insertions(+), 17 deletions(-)

diff --git a/core/src/main/java/org/apache/struts2/components/TextField.java 
b/core/src/main/java/org/apache/struts2/components/TextField.java
index 90f50e519..726c4fc5b 100644
--- a/core/src/main/java/org/apache/struts2/components/TextField.java
+++ b/core/src/main/java/org/apache/struts2/components/TextField.java
@@ -18,13 +18,12 @@
  */
 package org.apache.struts2.components;
 
+import jakarta.servlet.http.HttpServletRequest;
+import jakarta.servlet.http.HttpServletResponse;
 import org.apache.struts2.util.ValueStack;
 import org.apache.struts2.views.annotations.StrutsTag;
 import org.apache.struts2.views.annotations.StrutsTagAttribute;
 
-import jakarta.servlet.http.HttpServletRequest;
-import jakarta.servlet.http.HttpServletResponse;
-
 /**
  * 
  * Render an HTML input field of type text
@@ -50,17 +49,16 @@ import jakarta.servlet.http.HttpServletResponse;
  * 
  */
 @StrutsTag(
-name="textfield",
-tldTagClass="org.apache.struts2.views.jsp.ui.TextFieldTag",
-description="Render an HTML input field of type text",
-allowDynamicAttributes=true)
+name = "textfield",
+tldTagClass = "org.apache.struts2.views.jsp.ui.TextFieldTag",
+description = "Render an HTML input field of type text",
+allowDynamicAttributes = true)
 public class TextField extends UIBean {
 /**
  * The name of the default template for the TextFieldTag
  */
 final public static String TEMPLATE = "text";
 
-
 protected String maxlength;
 protected String readonly;
 protected String size;
@@ -95,27 +93,22 @@ public class TextField extends UIBean {
 
 }
 
-@StrutsTagAttribute(description="HTML maxlength attribute", type="Integer")
+@StrutsTagAttribute(description = "HTML maxlength attribute", type = 
"Integer")
 public void setMaxlength(String maxlength) {
 this.maxlength = maxlength;
 }
 
-@StrutsTagAttribute(description="Deprecated. Use maxlength instead.", 
type="Integer")
-public void setMaxLength(String maxlength) {
-this.maxlength = maxlength;
-}
-
-@StrutsTagAttribute(description="Whether the input is readonly", 
type="Boolean", defaultValue="false")
+@StrutsTagAttribute(description = "Whether the input is readonly", type = 
"Boolean", defaultValue = "false")
 public void setReadonly(String readonly) {
 this.readonly = readonly;
 }
 
-@StrutsTagAttribute(description="HTML size attribute",  type="Integer")
+@StrutsTagAttribute(description = "HTML size attribute", type = "Integer")
 public void setSize(String size) {
 this.size = size;
 }
 
-@StrutsTagAttribute(description="Specifies the html5 type element to 
display. e.g. text, email, url", defaultValue="text")
+@StrutsTagAttribute(description = "Specifies the html5 type element to 
display. e.g. text, email, url", defaultValue = "text")
 public void setType(String type) {
 this.type = type;
 }



(struts) branch fix/WW-5529-maxlength-s7 deleted (was e681b1a2a)

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch fix/WW-5529-maxlength-s7
in repository https://gitbox.apache.org/repos/asf/struts.git


 was e681b1a2a WW-5529 Drops unused misleading setter setMaxLength in 
favour of setMaxlength

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(struts) 01/01: WW-5529 Drops unused misleading setter setMaxLength in favour of setMaxlength (#1221)

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch fix/WW-5529-maxlength
in repository https://gitbox.apache.org/repos/asf/struts.git

commit 15ec67bd9c5caaa91fc062eadc42754e9f588ca0
Author: Lukasz Lenart 
AuthorDate: Mon Feb 17 10:09:14 2025 +0100

WW-5529 Drops unused misleading setter setMaxLength in favour of 
setMaxlength (#1221)
---
 .../org/apache/struts2/components/TextField.java   | 22 --
 1 file changed, 8 insertions(+), 14 deletions(-)

diff --git a/core/src/main/java/org/apache/struts2/components/TextField.java 
b/core/src/main/java/org/apache/struts2/components/TextField.java
index 07a983c27..3253605ca 100644
--- a/core/src/main/java/org/apache/struts2/components/TextField.java
+++ b/core/src/main/java/org/apache/struts2/components/TextField.java
@@ -50,17 +50,16 @@ import javax.servlet.http.HttpServletResponse;
  * 
  */
 @StrutsTag(
-name="textfield",
-tldTagClass="org.apache.struts2.views.jsp.ui.TextFieldTag",
-description="Render an HTML input field of type text",
-allowDynamicAttributes=true)
+name = "textfield",
+tldTagClass = "org.apache.struts2.views.jsp.ui.TextFieldTag",
+description = "Render an HTML input field of type text",
+allowDynamicAttributes = true)
 public class TextField extends UIBean {
 /**
  * The name of the default template for the TextFieldTag
  */
 final public static String TEMPLATE = "text";
 
-
 protected String maxlength;
 protected String readonly;
 protected String size;
@@ -95,27 +94,22 @@ public class TextField extends UIBean {
 
 }
 
-@StrutsTagAttribute(description="HTML maxlength attribute", type="Integer")
+@StrutsTagAttribute(description = "HTML maxlength attribute", type = 
"Integer")
 public void setMaxlength(String maxlength) {
 this.maxlength = maxlength;
 }
 
-@StrutsTagAttribute(description="Deprecated. Use maxlength instead.", 
type="Integer")
-public void setMaxLength(String maxlength) {
-this.maxlength = maxlength;
-}
-
-@StrutsTagAttribute(description="Whether the input is readonly", 
type="Boolean", defaultValue="false")
+@StrutsTagAttribute(description = "Whether the input is readonly", type = 
"Boolean", defaultValue = "false")
 public void setReadonly(String readonly) {
 this.readonly = readonly;
 }
 
-@StrutsTagAttribute(description="HTML size attribute",  type="Integer")
+@StrutsTagAttribute(description = "HTML size attribute", type = "Integer")
 public void setSize(String size) {
 this.size = size;
 }
 
-@StrutsTagAttribute(description="Specifies the html5 type element to 
display. e.g. text, email, url", defaultValue="text")
+@StrutsTagAttribute(description = "Specifies the html5 type element to 
display. e.g. text, email, url", defaultValue = "text")
 public void setType(String type) {
 this.type = type;
 }



(struts) branch fix/WW-5529-maxlength created (now 15ec67bd9)

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch fix/WW-5529-maxlength
in repository https://gitbox.apache.org/repos/asf/struts.git


  at 15ec67bd9 WW-5529 Drops unused misleading setter setMaxLength in 
favour of setMaxlength (#1221)

This branch includes the following new commits:

 new 15ec67bd9 WW-5529 Drops unused misleading setter setMaxLength in 
favour of setMaxlength (#1221)

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.




(struts) branch release/struts-6-7-x updated: [maven-release-plugin] prepare release STRUTS_6_7_3

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch release/struts-6-7-x
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/release/struts-6-7-x by this 
push:
 new 7909f4323 [maven-release-plugin] prepare release STRUTS_6_7_3
7909f4323 is described below

commit 7909f43237d35c889d3b68ce223d80466d31ae0a
Author: Lukasz Lenart 
AuthorDate: Mon Feb 17 11:34:11 2025 +0100

[maven-release-plugin] prepare release STRUTS_6_7_3
---
 apps/pom.xml| 2 +-
 apps/rest-showcase/pom.xml  | 4 ++--
 apps/showcase/pom.xml   | 2 +-
 assembly/pom.xml| 2 +-
 bom/pom.xml | 8 
 bundles/admin/pom.xml   | 2 +-
 bundles/demo/pom.xml| 2 +-
 bundles/pom.xml | 2 +-
 core/pom.xml| 2 +-
 plugins/async/pom.xml   | 2 +-
 plugins/bean-validation/pom.xml | 2 +-
 plugins/cdi/pom.xml | 2 +-
 plugins/config-browser/pom.xml  | 2 +-
 plugins/convention/pom.xml  | 2 +-
 plugins/dwr/pom.xml | 2 +-
 plugins/embeddedjsp/pom.xml | 2 +-
 plugins/gxp/pom.xml | 2 +-
 plugins/jasperreports/pom.xml   | 2 +-
 plugins/javatemplates/pom.xml   | 2 +-
 plugins/jfreechart/pom.xml  | 2 +-
 plugins/json/pom.xml| 2 +-
 plugins/junit/pom.xml   | 2 +-
 plugins/osgi/pom.xml| 2 +-
 plugins/oval/pom.xml| 2 +-
 plugins/pell-multipart/pom.xml  | 2 +-
 plugins/plexus/pom.xml  | 2 +-
 plugins/pom.xml | 2 +-
 plugins/portlet-junit/pom.xml   | 2 +-
 plugins/portlet-mocks/pom.xml   | 2 +-
 plugins/portlet-tiles/pom.xml   | 2 +-
 plugins/portlet/pom.xml | 2 +-
 plugins/rest/pom.xml| 2 +-
 plugins/sitemesh/pom.xml| 2 +-
 plugins/spring/pom.xml  | 2 +-
 plugins/testng/pom.xml  | 2 +-
 plugins/tiles/pom.xml   | 2 +-
 plugins/velocity/pom.xml| 2 +-
 plugins/xslt/pom.xml| 2 +-
 pom.xml | 6 +++---
 39 files changed, 45 insertions(+), 45 deletions(-)

diff --git a/apps/pom.xml b/apps/pom.xml
index 6214ba087..49f0f9882 100644
--- a/apps/pom.xml
+++ b/apps/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-6.7.3-SNAPSHOT
+6.7.3
 
 struts2-apps
 pom
diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml
index 56e273475..7e17dcd0b 100644
--- a/apps/rest-showcase/pom.xml
+++ b/apps/rest-showcase/pom.xml
@@ -24,12 +24,12 @@
 
 org.apache.struts
 struts2-apps
-6.7.3-SNAPSHOT
+6.7.3
 
 
 struts2-rest-showcase
 war
-6.7.3-SNAPSHOT
+6.7.3
 Struts 2 Rest Showcase Webapp
 Struts 2 Rest Showcase Example
 
diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml
index 06b68cdc7..b65ad173e 100644
--- a/apps/showcase/pom.xml
+++ b/apps/showcase/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-apps
-6.7.3-SNAPSHOT
+6.7.3
 
 
 struts2-showcase
diff --git a/assembly/pom.xml b/assembly/pom.xml
index 40b21bf92..b9f49074f 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-6.7.3-SNAPSHOT
+6.7.3
 
 
 struts2-assembly
diff --git a/bom/pom.xml b/bom/pom.xml
index 576d1f946..9a0ca2a74 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -25,11 +25,11 @@
 
 org.apache.struts
 struts2-parent
-6.7.3-SNAPSHOT
+6.7.3
 
 
 struts2-bom
-6.7.3-SNAPSHOT
+6.7.3
 pom
 
 Struts 2 Bill of Materials
@@ -44,7 +44,7 @@
 
 
 
-6.7.3-SNAPSHOT
+6.7.3
 true
 true
 
@@ -190,7 +190,7 @@
 
 
   
-STRUTS_6_7_0
+STRUTS_6_7_3
 
scm:git:https://gitbox.apache.org/repos/asf/struts.git
 
scm:git:https://gitbox.apache.org/repos/asf/struts.git
 https://github.com/apache/struts/
diff --git a/bundles/admin/pom.xml b/bundles/admin/pom.xml
index fbc65a690..e36cf4c5f 100644
--- a/bundles/admin/pom.xml
+++ b/bundles/admin/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-osgi-bundles
-6.7.3-SNAPSHOT
+6.7.3
 
 
 struts2-osgi-admin-bundle
diff --git a/bundles/demo/pom.xml b/bundles/demo/pom.xml
index fff8307dc..3e077b92f 100644
--- a/bundles/demo/pom.xml
+++ b/bundles/demo/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-osgi-bundles
-6.7.3-SNAPSHOT
+6.7.3
 
 
 struts2-osgi-demo-bundle
diff --git a/bundles/pom.xml b/bundles/pom.xml
index 187fce00b..fe6b48022 100755
--- a/bundles/pom.xml
+++ b/bundles/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-6.7.3-SNAPSHOT
+6.7.3
 
 
 struts2-osgi-bundles
diff --git a/core/pom.x

(struts) annotated tag STRUTS_6_7_3 created (now 658f0e9c6)

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to annotated tag STRUTS_6_7_3
in repository https://gitbox.apache.org/repos/asf/struts.git


  at 658f0e9c6 (tag)
 tagging 7909f43237d35c889d3b68ce223d80466d31ae0a (commit)
 replaces STRUTS_6_7_2
  by Lukasz Lenart
  on Mon Feb 17 11:34:15 2025 +0100

- Log -
[maven-release-plugin] copy for tag STRUTS_6_7_3
---

No new revisions were added by this update.



(struts) branch release/struts-6-7-x updated: [maven-release-plugin] prepare for next development iteration

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch release/struts-6-7-x
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/release/struts-6-7-x by this 
push:
 new 87e322dbe [maven-release-plugin] prepare for next development iteration
87e322dbe is described below

commit 87e322dbe2cf4945460bfe600e9f39cef8d73605
Author: Lukasz Lenart 
AuthorDate: Mon Feb 17 11:34:19 2025 +0100

[maven-release-plugin] prepare for next development iteration
---
 apps/pom.xml| 2 +-
 apps/rest-showcase/pom.xml  | 4 ++--
 apps/showcase/pom.xml   | 2 +-
 assembly/pom.xml| 2 +-
 bom/pom.xml | 8 
 bundles/admin/pom.xml   | 2 +-
 bundles/demo/pom.xml| 2 +-
 bundles/pom.xml | 2 +-
 core/pom.xml| 2 +-
 plugins/async/pom.xml   | 2 +-
 plugins/bean-validation/pom.xml | 2 +-
 plugins/cdi/pom.xml | 2 +-
 plugins/config-browser/pom.xml  | 2 +-
 plugins/convention/pom.xml  | 2 +-
 plugins/dwr/pom.xml | 2 +-
 plugins/embeddedjsp/pom.xml | 2 +-
 plugins/gxp/pom.xml | 2 +-
 plugins/jasperreports/pom.xml   | 2 +-
 plugins/javatemplates/pom.xml   | 2 +-
 plugins/jfreechart/pom.xml  | 2 +-
 plugins/json/pom.xml| 2 +-
 plugins/junit/pom.xml   | 2 +-
 plugins/osgi/pom.xml| 2 +-
 plugins/oval/pom.xml| 2 +-
 plugins/pell-multipart/pom.xml  | 2 +-
 plugins/plexus/pom.xml  | 2 +-
 plugins/pom.xml | 2 +-
 plugins/portlet-junit/pom.xml   | 2 +-
 plugins/portlet-mocks/pom.xml   | 2 +-
 plugins/portlet-tiles/pom.xml   | 2 +-
 plugins/portlet/pom.xml | 2 +-
 plugins/rest/pom.xml| 2 +-
 plugins/sitemesh/pom.xml| 2 +-
 plugins/spring/pom.xml  | 2 +-
 plugins/testng/pom.xml  | 2 +-
 plugins/tiles/pom.xml   | 2 +-
 plugins/velocity/pom.xml| 2 +-
 plugins/xslt/pom.xml| 2 +-
 pom.xml | 6 +++---
 39 files changed, 45 insertions(+), 45 deletions(-)

diff --git a/apps/pom.xml b/apps/pom.xml
index 49f0f9882..1f5e43d6f 100644
--- a/apps/pom.xml
+++ b/apps/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-6.7.3
+6.7.4-SNAPSHOT
 
 struts2-apps
 pom
diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml
index 7e17dcd0b..a0e61edbf 100644
--- a/apps/rest-showcase/pom.xml
+++ b/apps/rest-showcase/pom.xml
@@ -24,12 +24,12 @@
 
 org.apache.struts
 struts2-apps
-6.7.3
+6.7.4-SNAPSHOT
 
 
 struts2-rest-showcase
 war
-6.7.3
+6.7.4-SNAPSHOT
 Struts 2 Rest Showcase Webapp
 Struts 2 Rest Showcase Example
 
diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml
index b65ad173e..77cbf9c25 100644
--- a/apps/showcase/pom.xml
+++ b/apps/showcase/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-apps
-6.7.3
+6.7.4-SNAPSHOT
 
 
 struts2-showcase
diff --git a/assembly/pom.xml b/assembly/pom.xml
index b9f49074f..f98271918 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-6.7.3
+6.7.4-SNAPSHOT
 
 
 struts2-assembly
diff --git a/bom/pom.xml b/bom/pom.xml
index 9a0ca2a74..daf845b7d 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -25,11 +25,11 @@
 
 org.apache.struts
 struts2-parent
-6.7.3
+6.7.4-SNAPSHOT
 
 
 struts2-bom
-6.7.3
+6.7.4-SNAPSHOT
 pom
 
 Struts 2 Bill of Materials
@@ -44,7 +44,7 @@
 
 
 
-6.7.3
+6.7.4-SNAPSHOT
 true
 true
 
@@ -190,7 +190,7 @@
 
 
   
-STRUTS_6_7_3
+STRUTS_6_7_0
 
scm:git:https://gitbox.apache.org/repos/asf/struts.git
 
scm:git:https://gitbox.apache.org/repos/asf/struts.git
 https://github.com/apache/struts/
diff --git a/bundles/admin/pom.xml b/bundles/admin/pom.xml
index e36cf4c5f..25f406d3c 100644
--- a/bundles/admin/pom.xml
+++ b/bundles/admin/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-osgi-bundles
-6.7.3
+6.7.4-SNAPSHOT
 
 
 struts2-osgi-admin-bundle
diff --git a/bundles/demo/pom.xml b/bundles/demo/pom.xml
index 3e077b92f..50e8113f7 100644
--- a/bundles/demo/pom.xml
+++ b/bundles/demo/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-osgi-bundles
-6.7.3
+6.7.4-SNAPSHOT
 
 
 struts2-osgi-demo-bundle
diff --git a/bundles/pom.xml b/bundles/pom.xml
index fe6b48022..34397a735 100755
--- a/bundles/pom.xml
+++ b/bundles/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-6.7.3
+6.7.4-SNAPSHOT
 
 
 struts2-osgi-bundles
dif

svn commit: r74938 - /dev/struts/6.7.3/

2025-02-17 Thread lukaszlenart
Author: lukaszlenart
Date: Mon Feb 17 10:40:17 2025
New Revision: 74938

Log:
Updates test release 6.7.3

Added:
dev/struts/6.7.3/
dev/struts/6.7.3/struts-6.7.3-all.zip   (with props)
dev/struts/6.7.3/struts-6.7.3-all.zip.asc
dev/struts/6.7.3/struts-6.7.3-all.zip.sha256
dev/struts/6.7.3/struts-6.7.3-all.zip.sha512
dev/struts/6.7.3/struts-6.7.3-apps.zip   (with props)
dev/struts/6.7.3/struts-6.7.3-apps.zip.asc
dev/struts/6.7.3/struts-6.7.3-apps.zip.sha256
dev/struts/6.7.3/struts-6.7.3-apps.zip.sha512
dev/struts/6.7.3/struts-6.7.3-docs.zip   (with props)
dev/struts/6.7.3/struts-6.7.3-docs.zip.asc
dev/struts/6.7.3/struts-6.7.3-docs.zip.sha256
dev/struts/6.7.3/struts-6.7.3-docs.zip.sha512
dev/struts/6.7.3/struts-6.7.3-lib.zip   (with props)
dev/struts/6.7.3/struts-6.7.3-lib.zip.asc
dev/struts/6.7.3/struts-6.7.3-lib.zip.sha256
dev/struts/6.7.3/struts-6.7.3-lib.zip.sha512
dev/struts/6.7.3/struts-6.7.3-min-lib.zip   (with props)
dev/struts/6.7.3/struts-6.7.3-min-lib.zip.asc
dev/struts/6.7.3/struts-6.7.3-min-lib.zip.sha256
dev/struts/6.7.3/struts-6.7.3-min-lib.zip.sha512
dev/struts/6.7.3/struts-6.7.3-src.zip   (with props)
dev/struts/6.7.3/struts-6.7.3-src.zip.asc
dev/struts/6.7.3/struts-6.7.3-src.zip.sha256
dev/struts/6.7.3/struts-6.7.3-src.zip.sha512

Added: dev/struts/6.7.3/struts-6.7.3-all.zip
==
Binary file - no diff available.

Propchange: dev/struts/6.7.3/struts-6.7.3-all.zip
--
svn:mime-type = application/octet-stream

Added: dev/struts/6.7.3/struts-6.7.3-all.zip.asc
==
--- dev/struts/6.7.3/struts-6.7.3-all.zip.asc (added)
+++ dev/struts/6.7.3/struts-6.7.3-all.zip.asc Mon Feb 17 10:40:17 2025
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+
+iQJMBAABCgA2FiEEDgCGmDROYrkGM7fGKEFhBmOvux8FAmezEaQYHGx1a2Fzemxl
+bmFydEBhcGFjaGUub3JnAAoJEChBYQZjr7sfDG8P/jTvm3vitMcgbw3teNmxstg3
+GKLJ9cSsL55xN5KgDLleKjN5PxjEfHKHwNOGjIhpvF9tBAW89KOIl/JT14DcrBDI
+x35lWNNzgc8379Hwt+RMCzBrMhr8WGz817J2sAOOL+YULa19cZ2UDBv92sE03Ab9
+2ycRsKkS/HhABtxollAciUfS8uFuF3nNGhmrFArauvTg3PD7q1YoymRbUzVj8RFf
+um02Rkqx7yO1eFdbmAqtSshuPA4U2JIK0WOs8NZNGzHIwGpJn9NWhe1ugz1Nxq4x
+Asn6Em1xu1vwxPVfwudI8sACGKGTpsRwxJ+fJ6/WKf826sXs3McGcfi8qIEtv/Qf
+ROs5lT7dKhKFxDL3eQ4PJk5pVdiSvl2SQI/f42H7ZNWr/hDM0Y7hBxeljizKg0C1
+VDj0k5c+Sm4uZqTTmAgy7rSd02FHfypyIr1h4SRIEEmqDZS/xyzggXzVdzc4UWq+
+rs+vYRvBvBBK05sPF25z/vEOBi9rxuKaieAQKyEvTTh001Pd+NLzaW09TM5qWmek
+Ucoj6GCQ7iJlkUc9AfTjTK5hTT1eH4S4jSfpY+8LWrI2StFjKPVuUJGXIvKM/a73
+BOyAYGmiZrA4b2KEMR2gy1BpCPc6s3wQNqa6VpS+HTlGn2iV967fbEQb+1WKnOR0
+MgWctTNK27+r/f1baRRU
+=Zjco
+-END PGP SIGNATURE-

Added: dev/struts/6.7.3/struts-6.7.3-all.zip.sha256
==
--- dev/struts/6.7.3/struts-6.7.3-all.zip.sha256 (added)
+++ dev/struts/6.7.3/struts-6.7.3-all.zip.sha256 Mon Feb 17 10:40:17 2025
@@ -0,0 +1 @@
+ab5da29459a0479a2df306f808cb875896ba3a0c3130275e5932cdf19269d143  
struts-6.7.3-all.zip

Added: dev/struts/6.7.3/struts-6.7.3-all.zip.sha512
==
--- dev/struts/6.7.3/struts-6.7.3-all.zip.sha512 (added)
+++ dev/struts/6.7.3/struts-6.7.3-all.zip.sha512 Mon Feb 17 10:40:17 2025
@@ -0,0 +1 @@
+e3ba6ba5f33f1f5421db7d1a48768e3b81f8ee06f7507486e565842a82022a93d922eb68cbb6b2a9abcd2eeb18ae3cd880a06a49bec02722d39d811318222f70
  struts-6.7.3-all.zip

Added: dev/struts/6.7.3/struts-6.7.3-apps.zip
==
Binary file - no diff available.

Propchange: dev/struts/6.7.3/struts-6.7.3-apps.zip
--
svn:mime-type = application/octet-stream

Added: dev/struts/6.7.3/struts-6.7.3-apps.zip.asc
==
--- dev/struts/6.7.3/struts-6.7.3-apps.zip.asc (added)
+++ dev/struts/6.7.3/struts-6.7.3-apps.zip.asc Mon Feb 17 10:40:17 2025
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+
+iQJMBAABCgA2FiEEDgCGmDROYrkGM7fGKEFhBmOvux8FAmezEaQYHGx1a2Fzemxl
+bmFydEBhcGFjaGUub3JnAAoJEChBYQZjr7sfIaQQAJNXXHQPeXovvJnx3sx72dzj
+kYcJxjOSYtq8oKzrucaa2+i2bCJN5V30MLI57P9XrQtopkZw4uSLSnd+f1lZSzyH
+r6xpMN2ZiSXDEffo/BUuYthenvG7hnZ/fAQh6zwG4zkhZiuUxpRnOdhFl+mwavlS
+m6o0LHSWsRTwJNrAcHeKkBU/d+oS4eX5AxDsU90wKTazvMuP7I6Ad4iB9ZHQt/SV
+HcPL8jU35QzWrDCTV0n2aq1lcpLpld1zjwd25JOtp3fLE2ZOIFtX/VU0isTmQv1K
+xoXh1f5y2Ondzw83WB0oV6xHxDSHizy/hIXLj3R+ZjexRHTKugJqQPT9tI1oAZhZ
+6fX0YJT2X0TfBO+ie10mBRfOmZ/XgM1paWyanShlOY38BpXGQDelLHMRa2PxPIhq
+F9hTtk5P4yOOpAERYuLxS7V/kGYjWs5/fSJHG0wXQECga+HJ07p4qz/xj6pfSeyY
+/le8vDo/yB9hCExEkddAX3M7xmmZNMBfFnfAbImGak3nWdILUczd1gtSM6gglWii
+Apa444R+KznKH0Z5eRdjhw9Byl5gskgzsdSD/Y5SthiCrxYH

(struts) branch main updated: [maven-release-plugin] prepare for next development iteration

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/main by this push:
 new d727fbf6b [maven-release-plugin] prepare for next development iteration
d727fbf6b is described below

commit d727fbf6bec898439f31ac7b0b3ab12ecec6f20c
Author: Lukasz Lenart 
AuthorDate: Mon Feb 17 10:41:25 2025 +0100

[maven-release-plugin] prepare for next development iteration
---
 apps/pom.xml| 2 +-
 apps/rest-showcase/pom.xml  | 4 ++--
 apps/showcase/pom.xml   | 2 +-
 assembly/pom.xml| 2 +-
 bom/pom.xml | 8 
 core/pom.xml| 2 +-
 jakarta/pom.xml | 2 +-
 jakarta/velocity-tools-jsp-jakarta/pom.xml  | 2 +-
 jakarta/velocity-tools-view-jakarta/pom.xml | 2 +-
 plugins/async/pom.xml   | 2 +-
 plugins/bean-validation/pom.xml | 2 +-
 plugins/cdi/pom.xml | 2 +-
 plugins/config-browser/pom.xml  | 2 +-
 plugins/convention/pom.xml  | 2 +-
 plugins/jasperreports/pom.xml   | 2 +-
 plugins/javatemplates/pom.xml   | 2 +-
 plugins/jfreechart/pom.xml  | 2 +-
 plugins/json/pom.xml| 2 +-
 plugins/junit/pom.xml   | 2 +-
 plugins/pom.xml | 2 +-
 plugins/rest/pom.xml| 2 +-
 plugins/spring/pom.xml  | 2 +-
 plugins/testng/pom.xml  | 2 +-
 plugins/tiles/pom.xml   | 2 +-
 plugins/velocity/pom.xml| 2 +-
 plugins/xslt/pom.xml| 2 +-
 pom.xml | 6 +++---
 27 files changed, 33 insertions(+), 33 deletions(-)

diff --git a/apps/pom.xml b/apps/pom.xml
index d81074f1c..614a3ada1 100644
--- a/apps/pom.xml
+++ b/apps/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-7.0.3
+7.0.4-SNAPSHOT
 
 struts2-apps
 pom
diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml
index e3b32b8c1..3e689b7f0 100644
--- a/apps/rest-showcase/pom.xml
+++ b/apps/rest-showcase/pom.xml
@@ -24,12 +24,12 @@
 
 org.apache.struts
 struts2-apps
-7.0.3
+7.0.4-SNAPSHOT
 
 
 struts2-rest-showcase
 war
-7.0.3
+7.0.4-SNAPSHOT
 Struts 2 Rest Showcase Webapp
 Struts 2 Rest Showcase Example
 
diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml
index 02641095f..9c8acc4d2 100644
--- a/apps/showcase/pom.xml
+++ b/apps/showcase/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-apps
-7.0.3
+7.0.4-SNAPSHOT
 
 
 struts2-showcase
diff --git a/assembly/pom.xml b/assembly/pom.xml
index 0cd6e770f..9dc155d19 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-7.0.3
+7.0.4-SNAPSHOT
 
 
 struts2-assembly
diff --git a/bom/pom.xml b/bom/pom.xml
index 11f5f4c40..2a8b5394a 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -25,11 +25,11 @@
 
 org.apache.struts
 struts2-parent
-7.0.3
+7.0.4-SNAPSHOT
 
 
 struts2-bom
-7.0.3
+7.0.4-SNAPSHOT
 pom
 
 Struts 2 Bill of Materials
@@ -44,7 +44,7 @@
 
 
 
-7.0.3
+7.0.4-SNAPSHOT
 true
 true
 
@@ -160,7 +160,7 @@
 
 
   
-STRUTS_7_0_3
+HEAD
 
scm:git:https://gitbox.apache.org/repos/asf/struts.git
 
scm:git:https://gitbox.apache.org/repos/asf/struts.git
 https://github.com/apache/struts/
diff --git a/core/pom.xml b/core/pom.xml
index c473edbea..887a68361 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-7.0.3
+7.0.4-SNAPSHOT
 
 struts2-core
 jar
diff --git a/jakarta/pom.xml b/jakarta/pom.xml
index 09b0352d2..14811e8ea 100644
--- a/jakarta/pom.xml
+++ b/jakarta/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-7.0.3
+7.0.4-SNAPSHOT
 
 struts2-jakarta
 pom
diff --git a/jakarta/velocity-tools-jsp-jakarta/pom.xml 
b/jakarta/velocity-tools-jsp-jakarta/pom.xml
index 8506d0875..2e5a03da4 100644
--- a/jakarta/velocity-tools-jsp-jakarta/pom.xml
+++ b/jakarta/velocity-tools-jsp-jakarta/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-jakarta
-7.0.3
+7.0.4-SNAPSHOT
 
 struts2-velocity-tools-jsp-jakarta
 jar
diff --git a/jakarta/velocity-tools-view-jakarta/pom.xml 
b/jakarta/velocity-tools-view-jakarta/pom.xml
index 42a07ba2e..62d0d8e77 100644
--- a/j

(struts) annotated tag STRUTS_7_0_3 created (now 2fdf4329b)

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to annotated tag STRUTS_7_0_3
in repository https://gitbox.apache.org/repos/asf/struts.git


  at 2fdf4329b (tag)
 tagging 4603706b40ae49de34f87c1a63f3ebd0efe48afc (commit)
 replaces STRUTS_7_0_2
  by Lukasz Lenart
  on Mon Feb 17 10:41:21 2025 +0100

- Log -
[maven-release-plugin] copy for tag STRUTS_7_0_3
---

No new revisions were added by this update.



(struts) branch main updated: [maven-release-plugin] prepare release STRUTS_7_0_3

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/main by this push:
 new 4603706b4 [maven-release-plugin] prepare release STRUTS_7_0_3
4603706b4 is described below

commit 4603706b40ae49de34f87c1a63f3ebd0efe48afc
Author: Lukasz Lenart 
AuthorDate: Mon Feb 17 10:41:17 2025 +0100

[maven-release-plugin] prepare release STRUTS_7_0_3
---
 apps/pom.xml| 2 +-
 apps/rest-showcase/pom.xml  | 4 ++--
 apps/showcase/pom.xml   | 2 +-
 assembly/pom.xml| 2 +-
 bom/pom.xml | 8 
 core/pom.xml| 2 +-
 jakarta/pom.xml | 2 +-
 jakarta/velocity-tools-jsp-jakarta/pom.xml  | 2 +-
 jakarta/velocity-tools-view-jakarta/pom.xml | 2 +-
 plugins/async/pom.xml   | 2 +-
 plugins/bean-validation/pom.xml | 2 +-
 plugins/cdi/pom.xml | 2 +-
 plugins/config-browser/pom.xml  | 2 +-
 plugins/convention/pom.xml  | 2 +-
 plugins/jasperreports/pom.xml   | 2 +-
 plugins/javatemplates/pom.xml   | 2 +-
 plugins/jfreechart/pom.xml  | 2 +-
 plugins/json/pom.xml| 2 +-
 plugins/junit/pom.xml   | 2 +-
 plugins/pom.xml | 2 +-
 plugins/rest/pom.xml| 2 +-
 plugins/spring/pom.xml  | 2 +-
 plugins/testng/pom.xml  | 2 +-
 plugins/tiles/pom.xml   | 2 +-
 plugins/velocity/pom.xml| 2 +-
 plugins/xslt/pom.xml| 2 +-
 pom.xml | 6 +++---
 27 files changed, 33 insertions(+), 33 deletions(-)

diff --git a/apps/pom.xml b/apps/pom.xml
index e27748346..d81074f1c 100644
--- a/apps/pom.xml
+++ b/apps/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-7.0.3-SNAPSHOT
+7.0.3
 
 struts2-apps
 pom
diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml
index 2df0c373e..e3b32b8c1 100644
--- a/apps/rest-showcase/pom.xml
+++ b/apps/rest-showcase/pom.xml
@@ -24,12 +24,12 @@
 
 org.apache.struts
 struts2-apps
-7.0.3-SNAPSHOT
+7.0.3
 
 
 struts2-rest-showcase
 war
-7.0.3-SNAPSHOT
+7.0.3
 Struts 2 Rest Showcase Webapp
 Struts 2 Rest Showcase Example
 
diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml
index 35b967bdd..02641095f 100644
--- a/apps/showcase/pom.xml
+++ b/apps/showcase/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-apps
-7.0.3-SNAPSHOT
+7.0.3
 
 
 struts2-showcase
diff --git a/assembly/pom.xml b/assembly/pom.xml
index 76b73e69e..0cd6e770f 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-7.0.3-SNAPSHOT
+7.0.3
 
 
 struts2-assembly
diff --git a/bom/pom.xml b/bom/pom.xml
index e33df61a1..11f5f4c40 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -25,11 +25,11 @@
 
 org.apache.struts
 struts2-parent
-7.0.3-SNAPSHOT
+7.0.3
 
 
 struts2-bom
-7.0.3-SNAPSHOT
+7.0.3
 pom
 
 Struts 2 Bill of Materials
@@ -44,7 +44,7 @@
 
 
 
-7.0.3-SNAPSHOT
+7.0.3
 true
 true
 
@@ -160,7 +160,7 @@
 
 
   
-HEAD
+STRUTS_7_0_3
 
scm:git:https://gitbox.apache.org/repos/asf/struts.git
 
scm:git:https://gitbox.apache.org/repos/asf/struts.git
 https://github.com/apache/struts/
diff --git a/core/pom.xml b/core/pom.xml
index f7cd74e82..c473edbea 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-7.0.3-SNAPSHOT
+7.0.3
 
 struts2-core
 jar
diff --git a/jakarta/pom.xml b/jakarta/pom.xml
index ea0524c27..09b0352d2 100644
--- a/jakarta/pom.xml
+++ b/jakarta/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-parent
-7.0.3-SNAPSHOT
+7.0.3
 
 struts2-jakarta
 pom
diff --git a/jakarta/velocity-tools-jsp-jakarta/pom.xml 
b/jakarta/velocity-tools-jsp-jakarta/pom.xml
index 8a94b2818..8506d0875 100644
--- a/jakarta/velocity-tools-jsp-jakarta/pom.xml
+++ b/jakarta/velocity-tools-jsp-jakarta/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.struts
 struts2-jakarta
-7.0.3-SNAPSHOT
+7.0.3
 
 struts2-velocity-tools-jsp-jakarta
 jar
diff --git a/jakarta/velocity-tools-view-jakarta/pom.xml 
b/jakarta/velocity-tools-view-jakarta/pom.xml
index 2a72da33f..42a07ba2e 100644
--- a/jakarta/velocity-tool

(struts) branch release/struts-6-7-x updated: WW-5529 Drops unused misleading setter setMaxLength in favour of setMaxlength (#1221) (#1222)

2025-02-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch release/struts-6-7-x
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/release/struts-6-7-x by this 
push:
 new 1fe822cca WW-5529 Drops unused misleading setter setMaxLength in 
favour of setMaxlength (#1221) (#1222)
1fe822cca is described below

commit 1fe822cca0e1fd8b5d25451c4262a85ca8283830
Author: Lukasz Lenart 
AuthorDate: Mon Feb 17 10:27:04 2025 +0100

WW-5529 Drops unused misleading setter setMaxLength in favour of 
setMaxlength (#1221) (#1222)
---
 .../org/apache/struts2/components/TextField.java   | 22 --
 1 file changed, 8 insertions(+), 14 deletions(-)

diff --git a/core/src/main/java/org/apache/struts2/components/TextField.java 
b/core/src/main/java/org/apache/struts2/components/TextField.java
index 07a983c27..3253605ca 100644
--- a/core/src/main/java/org/apache/struts2/components/TextField.java
+++ b/core/src/main/java/org/apache/struts2/components/TextField.java
@@ -50,17 +50,16 @@ import javax.servlet.http.HttpServletResponse;
  * 
  */
 @StrutsTag(
-name="textfield",
-tldTagClass="org.apache.struts2.views.jsp.ui.TextFieldTag",
-description="Render an HTML input field of type text",
-allowDynamicAttributes=true)
+name = "textfield",
+tldTagClass = "org.apache.struts2.views.jsp.ui.TextFieldTag",
+description = "Render an HTML input field of type text",
+allowDynamicAttributes = true)
 public class TextField extends UIBean {
 /**
  * The name of the default template for the TextFieldTag
  */
 final public static String TEMPLATE = "text";
 
-
 protected String maxlength;
 protected String readonly;
 protected String size;
@@ -95,27 +94,22 @@ public class TextField extends UIBean {
 
 }
 
-@StrutsTagAttribute(description="HTML maxlength attribute", type="Integer")
+@StrutsTagAttribute(description = "HTML maxlength attribute", type = 
"Integer")
 public void setMaxlength(String maxlength) {
 this.maxlength = maxlength;
 }
 
-@StrutsTagAttribute(description="Deprecated. Use maxlength instead.", 
type="Integer")
-public void setMaxLength(String maxlength) {
-this.maxlength = maxlength;
-}
-
-@StrutsTagAttribute(description="Whether the input is readonly", 
type="Boolean", defaultValue="false")
+@StrutsTagAttribute(description = "Whether the input is readonly", type = 
"Boolean", defaultValue = "false")
 public void setReadonly(String readonly) {
 this.readonly = readonly;
 }
 
-@StrutsTagAttribute(description="HTML size attribute",  type="Integer")
+@StrutsTagAttribute(description = "HTML size attribute", type = "Integer")
 public void setSize(String size) {
 this.size = size;
 }
 
-@StrutsTagAttribute(description="Specifies the html5 type element to 
display. e.g. text, email, url", defaultValue="text")
+@StrutsTagAttribute(description = "Specifies the html5 type element to 
display. e.g. text, email, url", defaultValue = "text")
 public void setType(String type) {
 this.type = type;
 }