(struts-examples) 01/01: Adds simple example with Sitemesh3 integration

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch feature/sitemesh3
in repository https://gitbox.apache.org/repos/asf/struts-examples.git

commit 93a874c3e0497d53c0b887d1089db663bf9ca77e
Author: Lukasz Lenart 
AuthorDate: Fri Oct 11 08:12:53 2024 +0200

Adds simple example with Sitemesh3 integration
---
 pom.xml|  1 +
 sitemesh3/README.md|  6 ++
 sitemesh3/pom.xml  | 69 ++
 .../src/main/resources/DefaultMessages.properties  |  5 ++
 .../main/resources/DefaultMessages_es.properties   |  5 ++
 sitemesh3/src/main/resources/log4j2.xml| 14 +
 sitemesh3/src/main/resources/struts.xml| 22 +++
 .../main/webapp/WEB-INF/decorators/decorator.html  |  9 +++
 sitemesh3/src/main/webapp/WEB-INF/hello.jsp| 27 +
 sitemesh3/src/main/webapp/WEB-INF/sitemesh3.xml|  3 +
 sitemesh3/src/main/webapp/WEB-INF/web.xml  | 44 ++
 sitemesh3/src/main/webapp/index.html   | 10 
 12 files changed, 215 insertions(+)

diff --git a/pom.xml b/pom.xml
index 994105d..debfc0c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -122,6 +122,7 @@
 wildcard-method-selection
 wildcard-regex
 jasperreports
+sitemesh3
   
 
 
diff --git a/sitemesh3/README.md b/sitemesh3/README.md
new file mode 100644
index 000..ca3308a
--- /dev/null
+++ b/sitemesh3/README.md
@@ -0,0 +1,6 @@
+Struts 2 Sitemesh 3 example
+==
+
+Simple Struts 2 project which demonstrates Sitemesh 3 usage
+
+Published under [Apache License 
2.0](http://www.apache.org/licenses/LICENSE-2.0.html)
diff --git a/sitemesh3/pom.xml b/sitemesh3/pom.xml
new file mode 100644
index 000..7f31a85
--- /dev/null
+++ b/sitemesh3/pom.xml
@@ -0,0 +1,69 @@
+
+http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+4.0.0
+
+org.apache.struts
+struts-examples
+2.0.0
+
+
+sitemesh3
+Struts Sitemesh 3 Example
+
+war
+
+
+
+org.sitemesh
+sitemesh
+3.2.1
+
+
+
+org.apache.struts
+struts2-config-browser-plugin
+${struts2.version}
+
+
+
+org.apache.logging.log4j
+log4j-slf4j-impl
+${log4j2.version}
+
+
+
+org.apache.struts
+struts2-junit-plugin
+${struts2.version}
+test
+
+
+
+junit
+junit
+4.13.2
+test
+
+
+
+
+
+
+
+org.eclipse.jetty
+jetty-maven-plugin
+${jetty-plugin.version}
+
+
+/${project.artifactId}
+
+CTRL+C
+8999
+10
+
+
+
+
+
+
diff --git a/sitemesh3/src/main/resources/DefaultMessages.properties 
b/sitemesh3/src/main/resources/DefaultMessages.properties
new file mode 100644
index 000..074cd28
--- /dev/null
+++ b/sitemesh3/src/main/resources/DefaultMessages.properties
@@ -0,0 +1,5 @@
+HelloWorld.message = Struts is up and running...
+requiredstring=  ${getText(fieldName)} is required.
+password = Password
+username = User Name
+Missing.message =  This feature is under construction. Please try again in the 
next iteration.
diff --git a/sitemesh3/src/main/resources/DefaultMessages_es.properties 
b/sitemesh3/src/main/resources/DefaultMessages_es.properties
new file mode 100644
index 000..ce5d083
--- /dev/null
+++ b/sitemesh3/src/main/resources/DefaultMessages_es.properties
@@ -0,0 +1,5 @@
+HelloWorld.message = \u00A1Struts est\u00E1 bien\!...
+requiredstring = ${getText(fieldName)} es requerido.
+password = Contrase\u00F1a
+username = Nombre de Usuario
+Missing.message = P\u00E1gina bajo construcci\u00F3n, trate de nuevo en la 
proxima versi\u00F3n.
\ No newline at end of file
diff --git a/sitemesh3/src/main/resources/log4j2.xml 
b/sitemesh3/src/main/resources/log4j2.xml
new file mode 100644
index 000..1f4e3df
--- /dev/null
+++ b/sitemesh3/src/main/resources/log4j2.xml
@@ -0,0 +1,14 @@
+
+
+  
+
+  
+
+  
+  
+
+  
+
+
+  
+
diff --git a/sitemesh3/src/main/resources/struts.xml 
b/sitemesh3/src/main/resources/struts.xml
new file mode 100644
index 000..e95c041
--- /dev/null
+++ b/sitemesh3/src/main/resources/struts.xml
@@ -0,0 +1,22 @@
+
+https://struts.apache.org/dtds/struts-6.0.dtd";>
+
+
+
+
+
+
+
+
+hello
+
+
+
+  
+/WEB-INF/hello.jsp
+

(struts-examples) branch dependabot/maven/rest-angular/org.springframework-spring-web-6.1.12 deleted (was 5e20f6c)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch 
dependabot/maven/rest-angular/org.springframework-spring-web-6.1.12
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was 5e20f6c  Bump org.springframework:spring-web in /rest-angular

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-examples) 01/01: Merge pull request #376 from apache/dependabot/maven/rest-angular/org.springframework-spring-web-6.1.12

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

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

commit 41778a9f7bd658221e6759896237250352311795
Merge: d6682a5 5e20f6c
Author: Lukasz Lenart 
AuthorDate: Fri Oct 11 08:12:18 2024 +0200

Merge pull request #376 from 
apache/dependabot/maven/rest-angular/org.springframework-spring-web-6.1.12

Bump org.springframework:spring-web from 6.1.11 to 6.1.12 in /rest-angular

 rest-angular/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(struts-examples) branch master updated (d6682a5 -> 41778a9)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


from d6682a5  Merge pull request #373 from 
apache/dependabot/maven/io.quarkus-quarkus-universe-bom-3.13.0
 add 5e20f6c  Bump org.springframework:spring-web in /rest-angular
 new 41778a9  Merge pull request #376 from 
apache/dependabot/maven/rest-angular/org.springframework-spring-web-6.1.12

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:
 rest-angular/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(struts-examples) branch feature/sitemesh3 created (now 93a874c)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch feature/sitemesh3
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


  at 93a874c  Adds simple example with Sitemesh3 integration

This branch includes the following new commits:

 new 93a874c  Adds simple example with Sitemesh3 integration

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-examples) branch feature/struts-7 created (now f077f99)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch feature/struts-7
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


  at f077f99  Upgrades to Struts 7 & JakartaEE

This branch includes the following new commits:

 new f077f99  Upgrades to Struts 7 & JakartaEE

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-examples) 01/01: Merge pull request #375 from apache/feature/struts-7

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

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

commit 32745ec6a1361efeadd334f7cf6fae24a1cd356c
Merge: 72344ad f077f99
Author: Lukasz Lenart 
AuthorDate: Fri Oct 11 07:51:41 2024 +0200

Merge pull request #375 from apache/feature/struts-7

Upgrades to Struts 7 & JakartaEE

 action-chaining/pom.xml|   4 +-
 annotations/pom.xml|   4 +-
 basic-struts/pom.xml   |   7 +-
 bean-validation/pom.xml|  17 +-
 .../org/apache/struts/edit/action/EditAction.java  |  83 +++--
 .../java/org/apache/struts/edit/model/Person.java  | 165 +
 blank/pom.xml  |  21 +-
 coding-actions/pom.xml |   7 +-
 control-tags/pom.xml   |   7 +-
 crud/pom.xml   |   6 +-
 debugging-struts/pom.xml   |   7 +-
 dynamic-href/pom.xml   |  88 ++---
 exception-handling/pom.xml |   7 +-
 exclude-parameters/pom.xml |   7 +-
 expression-cache/pom.xml   |   7 +-
 file-upload/pom.xml|   2 +-
 form-processing/pom.xml|   7 +-
 form-tags/pom.xml  |   7 +-
 form-validation/pom.xml|   7 +-
 form-xml-validation/pom.xml|   7 +-
 helloworld/pom.xml |   7 +-
 http-session/pom.xml   |   7 +-
 interceptors/pom.xml   |   7 +-
 jasperreports/pom.xml  |  16 +-
 .../jasperreports/service/JasperInitializer.java   |   3 +-
 jfreechart/pom.xml |  21 +-
 json-customize/pom.xml |  18 +-
 json/pom.xml   |  18 +-
 json/src/main/java/org/demo/ConsumeAction.java |   3 +-
 mailreader2/pom.xml|  11 +-
 .../examples/mailreader2/ApplicationListener.java  |  27 +-
 message-resource/pom.xml   |   7 +-
 message-store/pom.xml  |  68 ++--
 pom.xml|  57 ++-
 portlet/README.txt |  22 --
 portlet/pom.xml| 215 
 portlet/src/main/etc/exo/web.xml   |  63 
 .../src/main/etc/gridsphere/README-gridsphere.txt  |   2 -
 .../src/main/etc/gridsphere/gridsphere-portlet.xml |  24 --
 portlet/src/main/etc/gridsphere/group.xml  |  10 -
 portlet/src/main/etc/gridsphere/layout.xml |  19 -
 portlet/src/main/etc/gridsphere/struts-portlet |   0
 portlet/src/main/etc/gridsphere/web.xml|  63 
 portlet/src/main/etc/jbossportal2.0/jboss-app.xml  |   3 -
 .../src/main/etc/jbossportal2.0/jboss-portlet.xml  |  12 -
 portlet/src/main/etc/jbossportal2.0/jboss-web.xml  |   3 -
 .../main/etc/jbossportal2.0/portlet-instances.xml  |  11 -
 .../etc/jbossportal2.0/struts-portlet-pages.xml|  18 -
 portlet/src/main/etc/jbossportal2.2/jboss-app.xml  |   3 -
 .../src/main/etc/jbossportal2.2/jboss-portlet.xml  |  12 -
 portlet/src/main/etc/jbossportal2.2/jboss-web.xml  |   3 -
 .../etc/jbossportal2.2/struts-portlet-object.xml   |  25 --
 .../src/main/etc/jetspeed2/README-jetspeed2.txt|   1 -
 portlet/src/main/etc/jetspeed2/struts-portlet.psml |  20 --
 portlet/src/main/etc/liferay3.6.1/web.xml  |  75 
 .../struts2/portlet/example/ExampleAction.java |  36 --
 .../struts2/portlet/example/FormExample.java   |  48 ---
 .../portlet/example/FormExampleModelDriven.java|  35 --
 .../portlet/example/FormExampleWithValidation.java |  45 ---
 .../struts2/portlet/example/FormResultAction.java  |  47 ---
 .../struts2/portlet/example/FormTestAction.java|  34 --
 .../struts2/portlet/example/SavePrefsAction.java   |  60 
 .../portlet/example/eventing/ProcessAction.java|  61 
 .../portlet/example/eventing/PublishAction.java|  52 ---
 .../example/fileupload/FileUploadAction.java   |  79 -
 .../apache/struts2/portlet/example/model/Name.java |  18 -
 .../portlet/example/spring/SpringAction.java   |  56 ---
 .../portlet/example/spring/ThingManager.java   |  36 --
 portlet/src/main/resources/LICENSE.txt | 174 --
 portlet/src/main/resources/NOTICE.txt  |   5 -
 portlet/src/main/resources/log4j2.xml  |  15 -
 .../FormExample-formExamplePrg-validation.xml  |  13 -
 ...le-processTilesFreemarkerExample-validation.xml |  13 -
 ...Example-processValidationExample-validation.xml |  13 -
 .../pluto-portal-driver-servi

(struts-examples) branch master updated (72344ad -> 32745ec)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


from 72344ad  Merge pull request #348 from 
apache/dependabot/maven/rest-angular/org.springframework-spring-web-6.1.6
 add f077f99  Upgrades to Struts 7 & JakartaEE
 new 32745ec  Merge pull request #375 from apache/feature/struts-7

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:
 action-chaining/pom.xml|   4 +-
 annotations/pom.xml|   4 +-
 basic-struts/pom.xml   |   7 +-
 bean-validation/pom.xml|  17 +-
 .../org/apache/struts/edit/action/EditAction.java  |  83 +++--
 .../java/org/apache/struts/edit/model/Person.java  | 165 +
 blank/pom.xml  |  21 +-
 coding-actions/pom.xml |   7 +-
 control-tags/pom.xml   |   7 +-
 crud/pom.xml   |   6 +-
 debugging-struts/pom.xml   |   7 +-
 dynamic-href/pom.xml   |  88 ++---
 exception-handling/pom.xml |   7 +-
 exclude-parameters/pom.xml |   7 +-
 expression-cache/pom.xml   |   7 +-
 file-upload/pom.xml|   2 +-
 form-processing/pom.xml|   7 +-
 form-tags/pom.xml  |   7 +-
 form-validation/pom.xml|   7 +-
 form-xml-validation/pom.xml|   7 +-
 helloworld/pom.xml |   7 +-
 http-session/pom.xml   |   7 +-
 interceptors/pom.xml   |   7 +-
 jasperreports/pom.xml  |  16 +-
 .../jasperreports/service/JasperInitializer.java   |   3 +-
 jfreechart/pom.xml |  21 +-
 json-customize/pom.xml |  18 +-
 json/pom.xml   |  18 +-
 json/src/main/java/org/demo/ConsumeAction.java |   3 +-
 mailreader2/pom.xml|  11 +-
 .../examples/mailreader2/ApplicationListener.java  |  27 +-
 message-resource/pom.xml   |   7 +-
 message-store/pom.xml  |  68 ++--
 pom.xml|  57 ++-
 portlet/README.txt |  22 --
 portlet/pom.xml| 215 
 portlet/src/main/etc/exo/web.xml   |  63 
 .../src/main/etc/gridsphere/README-gridsphere.txt  |   2 -
 .../src/main/etc/gridsphere/gridsphere-portlet.xml |  24 --
 portlet/src/main/etc/gridsphere/group.xml  |  10 -
 portlet/src/main/etc/gridsphere/layout.xml |  19 -
 portlet/src/main/etc/gridsphere/struts-portlet |   0
 portlet/src/main/etc/gridsphere/web.xml|  63 
 portlet/src/main/etc/jbossportal2.0/jboss-app.xml  |   3 -
 .../src/main/etc/jbossportal2.0/jboss-portlet.xml  |  12 -
 portlet/src/main/etc/jbossportal2.0/jboss-web.xml  |   3 -
 .../main/etc/jbossportal2.0/portlet-instances.xml  |  11 -
 .../etc/jbossportal2.0/struts-portlet-pages.xml|  18 -
 portlet/src/main/etc/jbossportal2.2/jboss-app.xml  |   3 -
 .../src/main/etc/jbossportal2.2/jboss-portlet.xml  |  12 -
 portlet/src/main/etc/jbossportal2.2/jboss-web.xml  |   3 -
 .../etc/jbossportal2.2/struts-portlet-object.xml   |  25 --
 .../src/main/etc/jetspeed2/README-jetspeed2.txt|   1 -
 portlet/src/main/etc/jetspeed2/struts-portlet.psml |  20 --
 portlet/src/main/etc/liferay3.6.1/web.xml  |  75 
 .../struts2/portlet/example/ExampleAction.java |  36 --
 .../struts2/portlet/example/FormExample.java   |  48 ---
 .../portlet/example/FormExampleModelDriven.java|  35 --
 .../portlet/example/FormExampleWithValidation.java |  45 ---
 .../struts2/portlet/example/FormResultAction.java  |  47 ---
 .../struts2/portlet/example/FormTestAction.java|  34 --
 .../struts2/portlet/example/SavePrefsAction.java   |  60 
 .../portlet/example/eventing/ProcessAction.java|  61 
 .../portlet/example/eventing/PublishAction.java|  52 ---
 .../example/fileupload/FileUploadAction.java   |  79 -
 .../apache/struts2/portlet/example/model/Name.java |  18 -
 .../portlet/example/spring/SpringAction.java   |  56 ---
 .../portlet/example/spring/ThingManager.java   |  36 --
 portlet/src/main/resources/LICENSE.txt | 174 --
 portlet/src/main/resources/NOTICE.txt  |   5 -
 portlet/s

(struts-examples) branch feature/struts-7 deleted (was f077f99)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch feature/struts-7
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was f077f99  Upgrades to Struts 7 & JakartaEE

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-examples) branch dependabot/maven/struts2.version-6.4.0 deleted (was 86d193e)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch dependabot/maven/struts2.version-6.4.0
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was 86d193e  Bump struts2.version from 6.3.0.2 to 6.4.0

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-examples) branch dependabot/github_actions/actions/checkout-4.1.7 deleted (was 1f3beaa)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch 
dependabot/github_actions/actions/checkout-4.1.7
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was 1f3beaa  Bump actions/checkout from 4.1.4 to 4.1.7

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-examples) branch master updated (d5ef545 -> c92cd1f)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


from d5ef545  Merge pull request #363 from 
apache/dependabot/github_actions/actions/checkout-4.1.7
 add 4328ece  Bump net.sf.jasperreports:jasperreports from 6.21.2 to 7.0.0
 new c92cd1f  Merge pull request #366 from 
apache/dependabot/maven/net.sf.jasperreports-jasperreports-7.0.0

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:
 jasperreports/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(struts-examples) 01/01: Merge pull request #366 from apache/dependabot/maven/net.sf.jasperreports-jasperreports-7.0.0

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

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

commit c92cd1ffec02c3159ccde61f138d4c763951cc72
Merge: d5ef545 4328ece
Author: Lukasz Lenart 
AuthorDate: Fri Oct 11 07:52:34 2024 +0200

Merge pull request #366 from 
apache/dependabot/maven/net.sf.jasperreports-jasperreports-7.0.0

Bump net.sf.jasperreports:jasperreports from 6.21.2 to 7.0.0

 jasperreports/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




(struts-examples) branch dependabot/maven/net.sf.jasperreports-jasperreports-7.0.0 deleted (was 4328ece)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch 
dependabot/maven/net.sf.jasperreports-jasperreports-7.0.0
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was 4328ece  Bump net.sf.jasperreports:jasperreports from 6.21.2 to 7.0.0

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-examples) branch master updated (c92cd1f -> 43f6780)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


from c92cd1f  Merge pull request #366 from 
apache/dependabot/maven/net.sf.jasperreports-jasperreports-7.0.0
 add 0029a49  Bump org.springframework:spring-web from 6.1.6 to 6.1.11
 new 43f6780  Merge pull request #370 from 
apache/dependabot/maven/org.springframework-spring-web-6.1.11

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:
 rest-angular/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(struts-examples) branch master updated (32745ec -> d5ef545)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


from 32745ec  Merge pull request #375 from apache/feature/struts-7
 add 1f3beaa  Bump actions/checkout from 4.1.4 to 4.1.7
 new d5ef545  Merge pull request #363 from 
apache/dependabot/github_actions/actions/checkout-4.1.7

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:
 .github/workflows/maven.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(struts-examples) 01/01: Merge pull request #363 from apache/dependabot/github_actions/actions/checkout-4.1.7

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

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

commit d5ef5458827cb8c42085e38c9a793ba2d26b1641
Merge: 32745ec 1f3beaa
Author: Lukasz Lenart 
AuthorDate: Fri Oct 11 07:52:21 2024 +0200

Merge pull request #363 from 
apache/dependabot/github_actions/actions/checkout-4.1.7

Bump actions/checkout from 4.1.4 to 4.1.7

 .github/workflows/maven.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(struts-examples) 01/01: Merge pull request #370 from apache/dependabot/maven/org.springframework-spring-web-6.1.11

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

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

commit 43f6780489b48e3238c690d79ec11aaea73d9508
Merge: c92cd1f 0029a49
Author: Lukasz Lenart 
AuthorDate: Fri Oct 11 07:52:48 2024 +0200

Merge pull request #370 from 
apache/dependabot/maven/org.springframework-spring-web-6.1.11

Bump org.springframework:spring-web from 6.1.6 to 6.1.11

 rest-angular/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




(struts-examples) branch dependabot/maven/org.springframework-spring-web-6.1.11 deleted (was 0029a49)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch 
dependabot/maven/org.springframework-spring-web-6.1.11
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was 0029a49  Bump org.springframework:spring-web from 6.1.6 to 6.1.11

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-examples) branch dependabot/maven/rest-angular/org.springframework-spring-web-6.1.12 created (now 5e20f6c)

2024-10-10 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/rest-angular/org.springframework-spring-web-6.1.12
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


  at 5e20f6c  Bump org.springframework:spring-web in /rest-angular

No new revisions were added by this update.



(struts-examples) branch master updated (43f6780 -> d6682a5)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


from 43f6780  Merge pull request #370 from 
apache/dependabot/maven/org.springframework-spring-web-6.1.11
 add e321ce0  Bump io.quarkus:quarkus-universe-bom from 3.10.0 to 3.13.0
 new d6682a5  Merge pull request #373 from 
apache/dependabot/maven/io.quarkus-quarkus-universe-bom-3.13.0

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:
 quarkus/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(struts-examples) 01/01: Merge pull request #373 from apache/dependabot/maven/io.quarkus-quarkus-universe-bom-3.13.0

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

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

commit d6682a5a729fef04c82786c3c3853abc4b3e25ab
Merge: 43f6780 e321ce0
Author: Lukasz Lenart 
AuthorDate: Fri Oct 11 07:53:01 2024 +0200

Merge pull request #373 from 
apache/dependabot/maven/io.quarkus-quarkus-universe-bom-3.13.0

Bump io.quarkus:quarkus-universe-bom from 3.10.0 to 3.13.0

 quarkus/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




(struts-examples) branch dependabot/maven/io.quarkus-quarkus-universe-bom-3.13.0 deleted (was e321ce0)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch 
dependabot/maven/io.quarkus-quarkus-universe-bom-3.13.0
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was e321ce0  Bump io.quarkus:quarkus-universe-bom from 3.10.0 to 3.13.0

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-examples) branch dependabot/maven/org.eclipse.jetty.ee8-jetty-ee8-maven-plugin-12.0.12 deleted (was 4b8d425)

2024-10-10 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch 
dependabot/maven/org.eclipse.jetty.ee8-jetty-ee8-maven-plugin-12.0.12
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was 4b8d425  Bump org.eclipse.jetty.ee8:jetty-ee8-maven-plugin from 12.0.8 
to 12.0.12

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