(struts-site) branch feature/include-tag-params updated: Rephrases how to access params in the included page

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

lukaszlenart pushed a commit to branch feature/include-tag-params
in repository https://gitbox.apache.org/repos/asf/struts-site.git


The following commit(s) were added to refs/heads/feature/include-tag-params by 
this push:
 new a53ed252f Rephrases how to access params in the included page
a53ed252f is described below

commit a53ed252f63a7ae2bcc59fe130402a440fbb11a8
Author: Lukasz Lenart 
AuthorDate: Sun Oct 29 09:57:00 2023 +0100

Rephrases how to access params in the included page
---
 source/tag-developers/include-tag.md | 19 +++
 1 file changed, 15 insertions(+), 4 deletions(-)

diff --git a/source/tag-developers/include-tag.md 
b/source/tag-developers/include-tag.md
index 8d7c9babc..489b0abbe 100644
--- a/source/tag-developers/include-tag.md
+++ b/source/tag-developers/include-tag.md
@@ -20,16 +20,17 @@ Please make sure you have read the [Tag Syntax](tag-syntax) 
document and underst
 
 ### How to access parameters
 
-Parameters are passed as request parameters, so use the `${param.ParamName}` 
notation to access them. Do not use 
-the **property** tag to access parameters in included files.
+Parameters are passed as request parameters, so use the `${param.paramName}` 
notation to access them. Do not use 
+the `` tag to access parameters in included files.
 
 Below it's an example how you can access parameters passed into the included 
page:
 
 ```
-${param.ParamName}
+${param.paramName}
+
 ```
 
-> **Note**: You can access such params without using JSTL, just use 
`${param.ParamName}` notation in Struts tags.
+> **Note**: You can access such params without using JSTL, just use 
`${param.paramName}` notation.
 
 ## Attributes
 
@@ -66,3 +67,13 @@ do an include to `myJsp.jsp` page with parameters 
`param1=value1` and `param2=va
 ```
 
 do an include to `myJsp.jsp` page with parameters `param1=value1` and 
`param2=value2`
+
+**Example 4**
+
+```jsp
+${param.param1}
+Param1 = 
+Param2 = ${param.param2}
+```
+
+do access passed parameters in the included page



(struts-site) branch feature/include-tag-params updated: Adds more detailed examples

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

lukaszlenart pushed a commit to branch feature/include-tag-params
in repository https://gitbox.apache.org/repos/asf/struts-site.git


The following commit(s) were added to refs/heads/feature/include-tag-params by 
this push:
 new c00bcb66a Adds more detailed examples
c00bcb66a is described below

commit c00bcb66ae41b8973f3a9a671c63a358b5c5132e
Author: Lukasz Lenart 
AuthorDate: Sun Oct 29 10:34:59 2023 +0100

Adds more detailed examples
---
 source/tag-developers/include-tag.md | 25 ++---
 1 file changed, 22 insertions(+), 3 deletions(-)

diff --git a/source/tag-developers/include-tag.md 
b/source/tag-developers/include-tag.md
index 489b0abbe..ff976f553 100644
--- a/source/tag-developers/include-tag.md
+++ b/source/tag-developers/include-tag.md
@@ -25,11 +25,21 @@ the `` tag to access parameters in included 
files.
 
 Below it's an example how you can access parameters passed into the included 
page:
 
+with scope:
 ```
 ${param.paramName}
 
 ```
 
+with no scope:
+```jsp
+${param.paramName}
+
+
+
+
+```
+
 > **Note**: You can access such params without using JSTL, just use 
 > `${param.paramName}` notation.
 
 ## Attributes
@@ -70,10 +80,19 @@ do an include to `myJsp.jsp` page with parameters 
`param1=value1` and `param2=va
 
 **Example 4**
 
+accessing passed parameters in the included page
+
+with scope:
 ```jsp
 ${param.param1}
-Param1 = 
-Param2 = ${param.param2}
+
 ```
 
-do access passed parameters in the included page
+with no scope:
+```jsp
+${param.param2}
+
+
+
+
+```



(struts-site) branch asf-staging updated: Updates stage by Jenkins

2023-10-29 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/struts-site.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new e0d5df604 Updates stage by Jenkins
e0d5df604 is described below

commit e0d5df6041b2bb05acb9fa62c25fd02035c4e1fa
Author: jenkins 
AuthorDate: Sun Oct 29 09:39:36 2023 +

Updates stage by Jenkins
---
 content/tag-developers/include-tag.html | 23 ---
 1 file changed, 20 insertions(+), 3 deletions(-)

diff --git a/content/tag-developers/include-tag.html 
b/content/tag-developers/include-tag.html
index ebf84c256..0cc60c0e3 100644
--- a/content/tag-developers/include-tag.html
+++ b/content/tag-developers/include-tag.html
@@ -170,10 +170,19 @@ the Below it’s an example how you can access parameters passed into the 
included page:
 
+with scope:
 ${param.paramName}
 
 
 
+with no scope:
+${param.paramName}
+
+
+
+
+
+
 
   Note: You can access such params without using JSTL, 
just use ${param.paramName} notation.
 
@@ -244,12 +253,20 @@ the Example 4
 
+accessing passed parameters in the included page
+
+with scope:
 ${param.param1}
-Param1 = 
-Param2 = ${param.param2}
+
 
 
-do access passed parameters in the included page
+with no scope:
+${param.param2}
+
+
+
+
+
 
   
 



(struts-site) branch feature/include-tag-params updated: Fixes wrong access example when scope is defined

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

lukaszlenart pushed a commit to branch feature/include-tag-params
in repository https://gitbox.apache.org/repos/asf/struts-site.git


The following commit(s) were added to refs/heads/feature/include-tag-params by 
this push:
 new 47cf53e50 Fixes wrong access example when scope is defined
47cf53e50 is described below

commit 47cf53e50f9a60a8cfcb46a6e712fc9b29fe3c78
Author: Lukasz Lenart 
AuthorDate: Sun Oct 29 14:13:10 2023 +0100

Fixes wrong access example when scope is defined
---
 source/tag-developers/include-tag.md | 13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/source/tag-developers/include-tag.md 
b/source/tag-developers/include-tag.md
index ff976f553..5f6c54062 100644
--- a/source/tag-developers/include-tag.md
+++ b/source/tag-developers/include-tag.md
@@ -27,17 +27,16 @@ Below it's an example how you can access parameters passed 
into the included pag
 
 with scope:
 ```
-${param.paramName}
-
+${param.paramName}
+
 ```
 
 with no scope:
 ```jsp
-${param.paramName}
-
-
-
-
+${param.paramName}
+
+
+
 ```
 
 > **Note**: You can access such params without using JSTL, just use 
 > `${param.paramName}` notation.



(struts-site) branch asf-staging updated: Updates stage by Jenkins

2023-10-29 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/struts-site.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 37b49bb0c Updates stage by Jenkins
37b49bb0c is described below

commit 37b49bb0c7dde5efb8f1722053582074c7914beb
Author: jenkins 
AuthorDate: Sun Oct 29 13:14:51 2023 +

Updates stage by Jenkins
---
 content/tag-developers/include-tag.html | 13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/content/tag-developers/include-tag.html 
b/content/tag-developers/include-tag.html
index 0cc60c0e3..ed47efebe 100644
--- a/content/tag-developers/include-tag.html
+++ b/content/tag-developers/include-tag.html
@@ -171,16 +171,15 @@ the Below it’s an example how you can access parameters passed into the 
included page:
 
 with scope:
-${param.paramName}
-
+${param.paramName}
+
 
 
 with no scope:
-${param.paramName}
-
-
-
-
+${param.paramName}
+
+
+
 
 
 



(struts-examples) 01/01: Uses JDK 17 & 21 to build

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

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

commit d7c675e231285d7ef5bf1243e4c6cf26c96ef48a
Author: Lukasz Lenart 
AuthorDate: Sun Oct 29 14:24:34 2023 +0100

Uses JDK 17 & 21 to build
---
 .github/workflows/maven.yml | 20 ++--
 pom.xml |  6 +++---
 2 files changed, 5 insertions(+), 21 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 9646a59..aa6a4a1 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -28,7 +28,7 @@ jobs:
 runs-on: ubuntu-latest
 strategy:
   matrix:
-java: [ '11', '17' ]
+java: [ '17', '21' ]
 steps:
   - name: Checkout code
 uses: actions/checkout@v4.1.1
@@ -45,20 +45,4 @@ jobs:
   distribution: adopt
   java-version: ${{ matrix.java }}
   - name: Build with Maven on Java ${{ matrix.java }}
-run: mvn -B -V test --no-transfer-progress
-
-  automerge:
-if: github.event_name == 'pull_request' && github.actor == 
'dependabot[bot]'
-runs-on: ubuntu-latest
-needs: [ build ]
-steps:
-  - name: Apply automerge label
-run: gh pr edit "$PR_URL" --add-label "automerge"
-env:
-  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-  PR_URL: ${{ github.event.pull_request.html_url }}
-  - name: Automerge
-run: gh pr merge -m "$PR_URL"
-env:
-  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-  PR_URL: ${{ github.event.pull_request.html_url }}
+run: mvn -B -V test --no-transfer-progress
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index ebca1f8..e07dc4d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,11 +41,11 @@
 
 
 UTF-8
-11
-11
+17
+17
 6.2.0
 2.21.0
-11.0.15
+9.4.46.v20220331
 true
 2.14.1
 2.14.1



(struts-examples) branch feature/jdk15-21 created (now d7c675e)

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

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


  at d7c675e  Uses JDK 17 & 21 to build

This branch includes the following new commits:

 new d7c675e  Uses JDK 17 & 21 to build

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.




[PR] Uses JDK 17 & 21 to build [struts-examples]

2023-10-29 Thread via GitHub


lukaszlenart opened a new pull request, #275:
URL: https://github.com/apache/struts-examples/pull/275

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts-examples) branch dependabot/maven/struts2.version-6.3.0.1 updated (22ff611 -> bbfb720)

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

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


 discard 22ff611  Bump struts2.version from 6.2.0 to 6.3.0.1
 add 7ad0d13  Bump io.quarkus:quarkus-universe-bom from 3.3.2 to 3.3.3
 add 31ce0df  Merge pull request #264 from 
apache/dependabot/maven/io.quarkus-quarkus-universe-bom-3.3.3
 add 449219a  Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.5.0 
to 3.6.0
 add f819229  Merge pull request #265 from 
apache/dependabot/maven/org.apache.maven.plugins-maven-javadoc-plugin-3.6.0
 add 5642e4d  Bump org.eclipse.jetty:jetty-maven-plugin
 add 9dd496f  Merge pull request #266 from 
apache/dependabot/maven/org.eclipse.jetty-jetty-maven-plugin-11.0.15
 add 843d28a  Bump io.quarkus:quarkus-universe-bom from 3.3.3 to 3.4.1
 add 2654c3b  Merge pull request #267 from 
apache/dependabot/maven/io.quarkus-quarkus-universe-bom-3.4.1
 add 1140539  Bump actions/checkout from 4.0.0 to 4.1.0
 add 8f4a667  Merge pull request #268 from 
apache/dependabot/github_actions/actions/checkout-4.1.0
 add da97b1f  Bump net.sf.jasperreports:jasperreports from 6.20.5 to 6.20.6
 add 89023e3  Merge pull request #269 from 
apache/dependabot/maven/net.sf.jasperreports-jasperreports-6.20.6
 add 9f4b2cc  Bump io.quarkus:quarkus-universe-bom from 3.4.1 to 3.4.2
 add 675c50d  Merge pull request #270 from 
apache/dependabot/maven/io.quarkus-quarkus-universe-bom-3.4.2
 add b13322e  Bump io.quarkus:quarkus-universe-bom from 3.4.2 to 3.4.3
 add 62e3bf6  Merge pull request #271 from 
apache/dependabot/maven/io.quarkus-quarkus-universe-bom-3.4.3
 add 3967086  Bump log4j2.version from 2.20.0 to 2.21.0
 add a26c9f2  Merge pull request #273 from 
apache/dependabot/maven/log4j2.version-2.21.0
 add 800ee82  Bump actions/checkout from 4.1.0 to 4.1.1
 add 5545ca9  Merge pull request #274 from 
apache/dependabot/github_actions/actions/checkout-4.1.1
 add bbfb720  Bump struts2.version from 6.2.0 to 6.3.0.1

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (22ff611)
\
 N -- N -- N   refs/heads/dependabot/maven/struts2.version-6.3.0.1 
(bbfb720)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/maven.yml | 2 +-
 jasperreports/pom.xml   | 2 +-
 pom.xml | 6 +++---
 quarkus/pom.xml | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)



Re: [PR] Uses JDK 17 & 21 to build [struts-examples]

2023-10-29 Thread via GitHub


lukaszlenart merged PR #275:
URL: https://github.com/apache/struts-examples/pull/275


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts-examples) branch master updated (5545ca9 -> b00d413)

2023-10-29 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 5545ca9  Merge pull request #274 from 
apache/dependabot/github_actions/actions/checkout-4.1.1
 add d7c675e  Uses JDK 17 & 21 to build
 add b00d413  Merge pull request #275 from apache/feature/jdk15-21

No new revisions were added by this update.

Summary of changes:
 .github/workflows/maven.yml | 20 ++--
 pom.xml |  6 +++---
 2 files changed, 5 insertions(+), 21 deletions(-)



(struts-examples) branch feature/jdk15-21 deleted (was d7c675e)

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

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


 was d7c675e  Uses JDK 17 & 21 to build

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



Re: [PR] Bump org.springframework:spring-web from 5.3.23 to 6.0.13 [struts-examples]

2023-10-29 Thread via GitHub


lukaszlenart closed pull request #272: Bump org.springframework:spring-web from 
5.3.23 to 6.0.13
URL: https://github.com/apache/struts-examples/pull/272


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts-examples) branch dependabot/maven/org.springframework-spring-web-6.0.13 deleted (was cfc6ac4)

2023-10-29 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.0.13
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was cfc6ac4  Bump org.springframework:spring-web from 5.3.23 to 6.0.13

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.3.0.1 updated (bbfb720 -> d829be2)

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

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


 discard bbfb720  Bump struts2.version from 6.2.0 to 6.3.0.1
 add d7c675e  Uses JDK 17 & 21 to build
 add b00d413  Merge pull request #275 from apache/feature/jdk15-21
 add d829be2  Bump struts2.version from 6.2.0 to 6.3.0.1

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (bbfb720)
\
 N -- N -- N   refs/heads/dependabot/maven/struts2.version-6.3.0.1 
(d829be2)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/maven.yml | 20 ++--
 pom.xml |  6 +++---
 2 files changed, 5 insertions(+), 21 deletions(-)



(struts-examples) branch fix/maven-war-plugin created (now 08e6dd2)

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

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


  at 08e6dd2  Uses maven-war-plugin compatible with JDK17

This branch includes the following new commits:

 new 08e6dd2  Uses maven-war-plugin compatible with JDK17

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.




[PR] Uses maven-war-plugin compatible with JDK17 [struts-examples]

2023-10-29 Thread via GitHub


lukaszlenart opened a new pull request, #276:
URL: https://github.com/apache/struts-examples/pull/276

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts-examples) 01/01: Uses maven-war-plugin compatible with JDK17

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

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

commit 08e6dd211e190d19b4cda0193a1ce3134be96a7f
Author: Lukasz Lenart 
AuthorDate: Sun Oct 29 14:43:52 2023 +0100

Uses maven-war-plugin compatible with JDK17
---
 pom.xml | 5 +
 1 file changed, 5 insertions(+)

diff --git a/pom.xml b/pom.xml
index e07dc4d..ae84784 100644
--- a/pom.xml
+++ b/pom.xml
@@ -212,6 +212,11 @@
 true
 
 
+
+org.apache.maven.plugins
+maven-war-plugin
+3.4.0
+
 
 
 



(struts-examples) branch master updated (b00d413 -> fa8a503)

2023-10-29 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 b00d413  Merge pull request #275 from apache/feature/jdk15-21
 add 08e6dd2  Uses maven-war-plugin compatible with JDK17
 new fa8a503  Merge pull request #276 from apache/fix/maven-war-plugin

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:
 pom.xml | 5 +
 1 file changed, 5 insertions(+)



Re: [PR] Uses maven-war-plugin compatible with JDK17 [struts-examples]

2023-10-29 Thread via GitHub


lukaszlenart merged PR #276:
URL: https://github.com/apache/struts-examples/pull/276


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts-examples) branch fix/maven-war-plugin deleted (was 08e6dd2)

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

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


 was 08e6dd2  Uses maven-war-plugin compatible with JDK17

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 #276 from apache/fix/maven-war-plugin

2023-10-29 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 fa8a503d5e445a9609ec4b813b41b4b826baf053
Merge: b00d413 08e6dd2
Author: Lukasz Lenart 
AuthorDate: Sun Oct 29 14:47:05 2023 +0100

Merge pull request #276 from apache/fix/maven-war-plugin

Uses maven-war-plugin compatible with JDK17

 pom.xml | 5 +
 1 file changed, 5 insertions(+)



(struts-examples) branch dependabot/maven/struts2.version-6.3.0.1 updated (d829be2 -> 3097da0)

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

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


omit d829be2  Bump struts2.version from 6.2.0 to 6.3.0.1
 add 08e6dd2  Uses maven-war-plugin compatible with JDK17
 add fa8a503  Merge pull request #276 from apache/fix/maven-war-plugin
 add 3097da0  Bump struts2.version from 6.2.0 to 6.3.0.1

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d829be2)
\
 N -- N -- N   refs/heads/dependabot/maven/struts2.version-6.3.0.1 
(3097da0)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 pom.xml | 5 +
 1 file changed, 5 insertions(+)



(struts-examples) 01/01: Upgrade Struts to ver. 6.3.0.1 Closes #262

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

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

commit 31b488a834a43b6944f6dffa51d67a580c91d6b2
Author: Lukasz Lenart 
AuthorDate: Sun Oct 29 15:05:31 2023 +0100

Upgrade Struts to ver. 6.3.0.1
Closes #262
---
 pom.xml   | 2 +-
 .../main/java/org/apache/strutsexamples/web/TilesUnknownHandler.java  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index ae84784..631c637 100644
--- a/pom.xml
+++ b/pom.xml
@@ -43,7 +43,7 @@
 UTF-8
 17
 17
-6.2.0
+6.3.0.1
 2.21.0
 9.4.46.v20220331
 true
diff --git 
a/unknown-handler/src/main/java/org/apache/strutsexamples/web/TilesUnknownHandler.java
 
b/unknown-handler/src/main/java/org/apache/strutsexamples/web/TilesUnknownHandler.java
index 2930e8e..5167cf9 100644
--- 
a/unknown-handler/src/main/java/org/apache/strutsexamples/web/TilesUnknownHandler.java
+++ 
b/unknown-handler/src/main/java/org/apache/strutsexamples/web/TilesUnknownHandler.java
@@ -9,8 +9,8 @@ import org.apache.logging.log4j.Logger;
 import org.apache.struts2.ServletActionContext;
 import org.apache.struts2.StrutsException;
 import org.apache.struts2.views.tiles.TilesResult;
-import org.apache.tiles.TilesContainer;
-import org.apache.tiles.access.TilesAccess;
+import org.apache.tiles.api.TilesContainer;
+import org.apache.tiles.api.access.TilesAccess;
 import org.apache.tiles.request.servlet.ServletApplicationContext;
 import org.apache.tiles.request.servlet.ServletRequest;
 



(struts-examples) branch feature/upgrade-struts created (now 31b488a)

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

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


  at 31b488a  Upgrade Struts to ver. 6.3.0.1 Closes #262

This branch includes the following new commits:

 new 31b488a  Upgrade Struts to ver. 6.3.0.1 Closes #262

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.




[PR] Upgrade Struts to ver. 6.3.0.1 [struts-examples]

2023-10-29 Thread via GitHub


lukaszlenart opened a new pull request, #277:
URL: https://github.com/apache/struts-examples/pull/277

   Closes #262


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Upgrade Struts to ver. 6.3.0.1 [struts-examples]

2023-10-29 Thread via GitHub


lukaszlenart merged PR #277:
URL: https://github.com/apache/struts-examples/pull/277


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump struts2.version from 6.2.0 to 6.3.0.1 [struts-examples]

2023-10-29 Thread via GitHub


lukaszlenart closed pull request #262: Bump struts2.version from 6.2.0 to 
6.3.0.1
URL: https://github.com/apache/struts-examples/pull/262


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts-examples) 01/01: Merge pull request #277 from apache/feature/upgrade-struts

2023-10-29 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 cffa7975618365e06fdbe3cb904d752eb25bbe4a
Merge: fa8a503 31b488a
Author: Lukasz Lenart 
AuthorDate: Sun Oct 29 15:08:03 2023 +0100

Merge pull request #277 from apache/feature/upgrade-struts

Upgrade Struts to ver. 6.3.0.1

 pom.xml   | 2 +-
 .../main/java/org/apache/strutsexamples/web/TilesUnknownHandler.java  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)



(struts-examples) branch master updated (fa8a503 -> cffa797)

2023-10-29 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 fa8a503  Merge pull request #276 from apache/fix/maven-war-plugin
 add 31b488a  Upgrade Struts to ver. 6.3.0.1 Closes #262
 new cffa797  Merge pull request #277 from apache/feature/upgrade-struts

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:
 pom.xml   | 2 +-
 .../main/java/org/apache/strutsexamples/web/TilesUnknownHandler.java  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)



(struts-examples) branch feature/upgrade-struts deleted (was 31b488a)

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

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


 was 31b488a  Upgrade Struts to ver. 6.3.0.1 Closes #262

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.3.0.1 deleted (was 3097da0)

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

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


 was 3097da0  Bump struts2.version from 6.2.0 to 6.3.0.1

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



Build failed in Jenkins: Struts » Struts-examples-dependency-check #103

2023-10-29 Thread Apache Jenkins Server
See 


Changes:

[github] Bump net.sf.jasperreports:jasperreports from 6.20.5 to 6.20.6

[github] Bump io.quarkus:quarkus-universe-bom from 3.4.1 to 3.4.2

[github] Bump io.quarkus:quarkus-universe-bom from 3.4.2 to 3.4.3

[github] Bump log4j2.version from 2.20.0 to 2.21.0

[github] Bump actions/checkout from 4.1.0 to 4.1.1

[Lukasz Lenart] Uses JDK 17 & 21 to build

[Lukasz Lenart] Uses maven-war-plugin compatible with JDK17

[Lukasz Lenart] Upgrade Struts to ver. 6.3.0.1


--
[...truncated 508 B...]
 > git rev-parse --resolve-git-dir 
 > 
 >  # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url 
 > https://gitbox.apache.org/repos/asf/struts-examples.git # timeout=10
Fetching upstream changes from 
https://gitbox.apache.org/repos/asf/struts-examples.git
 > git --version # timeout=10
 > git --version # 'git version 2.17.1'
 > git fetch --tags --progress -- 
 > https://gitbox.apache.org/repos/asf/struts-examples.git 
 > +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse refs/remotes/origin/master^{commit} # timeout=10
Checking out Revision cffa7975618365e06fdbe3cb904d752eb25bbe4a 
(refs/remotes/origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f cffa7975618365e06fdbe3cb904d752eb25bbe4a # timeout=10
Commit message: "Merge pull request #277 from apache/feature/upgrade-struts"
 > git rev-list --no-walk 8f4a6670635300518102d57fc76d1552573b739f # timeout=10
ERROR: No tool found matching MAVEN_3_LATEST__HOME
[Struts-examples-dependency-check] $ /bin/sh -xe 
/tmp/jenkins8909795513911184173.sh
+ export MAVEN_OPTS=-Xms2g -Xmx2g -XX:MaxPermSize=512m 
-XX:+CMSClassUnloadingEnabled
+ export 
PATH=:/home/jenkins/tools/java/latest11/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
+ ./mvnw verify -Pdependency-check
OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was 
removed in 8.0
[INFO] Scanning for projects...
Downloading from apache-public: 
https://repository.apache.org/content/groups/public/io/quarkus/quarkus-universe-bom/3.4.3/quarkus-universe-bom-3.4.3.pom
Downloading from apache-staging: 
https://repository.apache.org/content/groups/staging/io/quarkus/quarkus-universe-bom/3.4.3/quarkus-universe-bom-3.4.3.pom
Downloading from apache-snapshots: 
https://repository.apache.org/content/groups/snapshots/io/quarkus/quarkus-universe-bom/3.4.3/quarkus-universe-bom-3.4.3.pom
Downloading from oss-snapshots: 
https://oss.sonatype.org/content/repositories/snapshots/io/quarkus/quarkus-universe-bom/3.4.3/quarkus-universe-bom-3.4.3.pom
Downloading from central: 
https://repo.maven.apache.org/maven2/io/quarkus/quarkus-universe-bom/3.4.3/quarkus-universe-bom-3.4.3.pom
Progress (1): 1.4/898 kBProgress (1): 2.8/898 kBProgress (1): 4.1/898 
kBProgress (1): 5.5/898 kBProgress (1): 6.9/898 kBProgress (1): 8.3/898 
kBProgress (1): 9.7/898 kBProgress (1): 11/898 kB Progress (1): 12/898 
kBProgress (1): 14/898 kBProgress (1): 15/898 kBProgress (1): 16/898 kBProgress 
(1): 20/898 kBProgress (1): 24/898 kBProgress (1): 28/898 kBProgress (1): 
32/898 kBProgress (1): 36/898 kBProgress (1): 40/898 kBProgress (1): 45/898 
kBProgress (1): 49/898 kBProgress (1): 53/898 kBProgress (1): 57/898 kBProgress 
(1): 61/898 kBProgress (1): 65/898 kBProgress (1): 69/898 kBProgress (1): 
73/898 kBProgress (1): 77/898 kBProgress (1): 81/898 kBProgress (1): 85/898 
kBProgress (1): 90/898 kBProgress (1): 94/898 kBProgress (1): 98/898 kBProgress 
(1): 102/898 kBProgress (1): 106/898 kBProgress (1): 110/898 kBProgress (1): 
114/898 kBProgress (1): 118/898 kBProgress (1): 122/898 kBProgress (1): 126/898 
kBProgress (1): 131/898 kBProgress (1): 135/898 kBProgress (1): 139/898 
kBProgress (1): 143/898 kBProgress (1): 147/898 kBProgress (1): 151/898 
kBProgress (1): 155/898 kBProgress (1): 159/898 kBProgress (1): 163/898 
kBProgress (1): 167/898 kBProgress (1): 171/898 kBProgress (1): 176/898 
kBProgress (1): 180/898 kBProgress (1): 184/898 kBProgress (1): 188/898 
kBProgress (1): 192/898 kBProgress (1): 196/898 kBProgress (1): 200/898 
kBProgress (1): 204/898 kBProgress (1): 208/898 kBProgress (1): 212/898 
kBProgress (1): 217/898 kBProgress (1): 221/898 kBProgress (1): 225/898 
kBProgress (1): 229/898 kBProgress (1): 233/898 kBProgress (1): 237/898 
kBProgress (1): 241/898 kBProgress (1): 245/898 kBProgress (1): 249/898 
kBProgress (1): 253/898 kBProgress (1): 257/898 kBProgress (1): 262/898 
kBProgress (1): 266/898 kBProgress (1): 270/898 kBProgress (1): 274/898 
kBProgress (1): 278/898 kBProgress (1): 282/898 kBProgress (1): 286/898 
kBProgress (1): 290/898 kBProgress (1): 294/898 kBProgress (1): 298/898 
kBProgress (1): 303/898 kBProgress (1): 307/898 kBProgress (1): 311/898 
kBProgress (1): 315/

[PR] Bump org.eclipse.jetty:jetty-maven-plugin from 9.4.46.v20220331 to 11.0.15 [struts-examples]

2023-10-29 Thread via GitHub


dependabot[bot] opened a new pull request, #278:
URL: https://github.com/apache/struts-examples/pull/278

   Bumps 
[org.eclipse.jetty:jetty-maven-plugin](https://github.com/eclipse/jetty.project)
 from 9.4.46.v20220331 to 11.0.15.
   
   Release notes
   Sourced from https://github.com/eclipse/jetty.project/releases";>org.eclipse.jetty:jetty-maven-plugin's
 releases.
   
   11.0.15
   Security Updates
   This release addresses:
   
   CVE-2023-41900
   
   Changelog
   
   https://redirect.github.com/eclipse/jetty.project/issues/9556";>#9556 
- Password Util does not ask for password
   https://redirect.github.com/eclipse/jetty.project/issues/9555";>#9555 
- General bug fixes for jetty-start
   https://redirect.github.com/eclipse/jetty.project/issues/9517";>#9517 
- Jetty 11.0.14 uses wrong pathSpec for request
   https://redirect.github.com/eclipse/jetty.project/issues/9501";>#9501 
- jetty client with proxy - ssl traffic between both proxy and servers
   https://redirect.github.com/eclipse/jetty.project/issues/9497";>#9497 
- Maven plugin add support for jar projects in 
:effective-web-xml
   https://redirect.github.com/eclipse/jetty.project/issues/9494";>#9494 
- Improved HttpClient TLS documentation about server host name verification
   https://redirect.github.com/eclipse/jetty.project/issues/9468";>#9468 
- Jetty 11.0.14 is less tolerant of non-compliant cookies than 11.0.13
   https://redirect.github.com/eclipse/jetty.project/issues/9464";>#9464 
- Add optional configuration to log user out after OpenID idToken expires 
(CVE-2023-41900)
   https://redirect.github.com/eclipse/jetty.project/issues/9400";>#9400 
- Jetty logs warning with stacktrace when annotation parser encounters 
module-info.class file inside elasticsearch-x-content jar
   https://redirect.github.com/eclipse/jetty.project/issues/9309";>#9309 
- jetty.sh cannot handle complex Jetty properties from 
start.d/*.ini
   https://redirect.github.com/eclipse/jetty.project/issues/9237";>#9237 
- Decouple QTP idleTimeout from pool shrink rate
   https://redirect.github.com/eclipse/jetty.project/issues/6184";>#6184 
- Remove usages of classes associated with https://openjdk.org/jeps/411";>JEP-411 that deprecate/remove the 
SecurityManager from the JVM
   
   Dependencies
   
   https://redirect.github.com/eclipse/jetty.project/issues/9610";>#9610 
- Bump tycho-p2-repository-plugin to 3.0.4
   https://redirect.github.com/eclipse/jetty.project/issues/9607";>#9607 
- Bump logback-core to 1.3.6
   https://redirect.github.com/eclipse/jetty.project/issues/9596";>#9596 
- Bump org.eclipse.osgi.util to 3.7.200
   https://redirect.github.com/eclipse/jetty.project/issues/9591";>#9591 
- Bump json-smart to 2.4.10
   https://redirect.github.com/eclipse/jetty.project/issues/9581";>#9581 
- Bump commons-compress to 1.23.0
   https://redirect.github.com/eclipse/jetty.project/issues/9575";>#9575 
- Bump protostream to 4.6.2.Final
   https://redirect.github.com/eclipse/jetty.project/issues/9574";>#9574 
- Bump org.eclipse.osgi to 3.18.300
   https://redirect.github.com/eclipse/jetty.project/issues/9558";>#9558 
- Bump asm.version to 9.5
   
   11.0.14
   Special Thanks to the following Eclipse Jetty community members
   
   https://github.com/pzygielo";>@​pzygielo 
(Piotrek Żygieło)
   https://github.com/jluehe";>@​jluehe 
(jluehe)
   https://github.com/dzoech";>@​dzoech (Dominik 
Zöchbauer)
   
   
   Changelog
   
   https://redirect.github.com/eclipse/jetty.project/issues/9344";>#9344 
- Cleanup Multipart handling for CVE-2023-26048
   https://redirect.github.com/eclipse/jetty.project/issues/9343";>#9343 
- URI Host Mismatch with optional Compliance modes
   https://redirect.github.com/eclipse/jetty.project/issues/9339";>#9339 
- Cleanup Cookie Cutter handling for CVE-2023-26049
   https://redirect.github.com/eclipse/jetty.project/issues/9337";>#9337 
- LowResourceMonitor.getReasons should include detailed reason instead of 
hard-coded message (https://github.com/jluehe";>@​jluehe)
   https://redirect.github.com/eclipse/jetty.project/issues/9334";>#9334 
- Better support for Cookie RFC 2965 compliance
   https://redirect.github.com/eclipse/jetty.project/issues/9285";>#9285 
- ContextHandler sends redirect on BaseResponse instead of Wrapped Response 
object from Handler chain
   https://redirect.github.com/eclipse/jetty.project/issues/9283";>#9283 
- Configurable Unsafe Host Header Behaviors
   https://redirect.github.com/eclipse/jetty.project/issues/9188";>#9188 
- Log as info exceptions from server after sending stop with StopMojo.
   
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/jetty/jetty.project/commit/5bc5e562c8d05c5862505aebe5cf83a61bdbcb96";>5bc5e56
 Updating to version 11.0.15
   https://github.com/jetty/jetty.project/commit/a77c8798f44b470fcfc6682b088e556ae0e5e96a";>a77c879
 Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x
   https://github.com/jetty/jetty.project/commit/24b7d06fd5ce5468caa3eaa93688

(struts-examples) branch dependabot/maven/org.eclipse.jetty-jetty-maven-plugin-11.0.15 created (now d9ef94d)

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

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


  at d9ef94d  Bump org.eclipse.jetty:jetty-maven-plugin

No new revisions were added by this update.



[PR] Bump io.quarkus:quarkus-universe-bom from 3.4.3 to 3.5.0 [struts-examples]

2023-10-29 Thread via GitHub


dependabot[bot] opened a new pull request, #279:
URL: https://github.com/apache/struts-examples/pull/279

   Bumps 
[io.quarkus:quarkus-universe-bom](https://github.com/quarkusio/quarkus-platform)
 from 3.4.3 to 3.5.0.
   
   Commits
   
   https://github.com/quarkusio/quarkus-platform/commit/969fec11d1f66f6c800766b46add29e66bf3d1c1";>969fec1
 [maven-release-plugin] prepare release 3.5.0
   https://github.com/quarkusio/quarkus-platform/commit/7e83623ec2fea3a1b0e0b4f888d5c563f6fbb6ca";>7e83623
 Merge pull request https://redirect.github.com/quarkusio/quarkus-platform/issues/1018";>#1018
 from ppalaga/231025-qcxf-2.5.0
   https://github.com/quarkusio/quarkus-platform/commit/6879425091b3c1c3f9e6b0d7d261e822259d3ade";>6879425
 Merge pull request https://redirect.github.com/quarkusio/quarkus-platform/issues/1017";>#1017
 from qosdk-bot/qosdk-release-6.4.0.Beta1
   https://github.com/quarkusio/quarkus-platform/commit/0113a50a0629e27988239f370e7a93d0db5b5672";>0113a50
 Upgrade to Quarkus CXF 2.5.0
   https://github.com/quarkusio/quarkus-platform/commit/2f1ff1c361b8ccb2939442900d05df60c0172037";>2f1ff1c
 Update QOSDK to 6.4.0.Beta1
   https://github.com/quarkusio/quarkus-platform/commit/5c24a2fe0c807b117c8a012b982a2691e2f422b6";>5c24a2f
 Merge pull request https://redirect.github.com/quarkusio/quarkus-platform/issues/1016";>#1016
 from gsmet/vault-3.3.0
   https://github.com/quarkusio/quarkus-platform/commit/9f0282a4d8717d731d200c6ac200a6c83a1a9c5d";>9f0282a
 Update Quarkus Vault to 3.3.0
   https://github.com/quarkusio/quarkus-platform/commit/6ac3c417266802b1be178041aff2e22ab2529c3e";>6ac3c41
 Merge pull request https://redirect.github.com/quarkusio/quarkus-platform/issues/1015";>#1015
 from jamesnetherton/cqmel-quarkus-3.5.0
   https://github.com/quarkusio/quarkus-platform/commit/5f7bdc85f1ca7950f0d53c3197887b5afb2da8b6";>5f7bdc8
 Merge pull request https://redirect.github.com/quarkusio/quarkus-platform/issues/1011";>#1011
 from loicmathieu/gcp-2-6-0
   https://github.com/quarkusio/quarkus-platform/commit/434ca97c9c05440745a0712d0455ef737d974c14";>434ca97
 Upgrade Camel Quarkus to 3.5.0
   Additional commits viewable in https://github.com/quarkusio/quarkus-platform/compare/3.4.3...3.5.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.quarkus:quarkus-universe-bom&package-manager=maven&previous-version=3.4.3&new-version=3.5.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts-examples) branch dependabot/maven/io.quarkus-quarkus-universe-bom-3.5.0 created (now 23a865d)

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

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


  at 23a865d  Bump io.quarkus:quarkus-universe-bom from 3.4.3 to 3.5.0

No new revisions were added by this update.



[PR] Bump log4j2.version from 2.21.0 to 2.21.1 [struts-examples]

2023-10-29 Thread via GitHub


dependabot[bot] opened a new pull request, #280:
URL: https://github.com/apache/struts-examples/pull/280

   Bumps `log4j2.version` from 2.21.0 to 2.21.1.
   Updates `org.apache.logging.log4j:log4j-core` from 2.21.0 to 2.21.1
   
   Updates `org.apache.logging.log4j:log4j-api` from 2.21.0 to 2.21.1
   
   Updates `org.apache.logging.log4j:log4j-slf4j-impl` from 2.21.0 to 2.21.1
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts-examples) branch dependabot/maven/log4j2.version-2.21.1 created (now 9db0e6c)

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

github-bot pushed a change to branch dependabot/maven/log4j2.version-2.21.1
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


  at 9db0e6c  Bump log4j2.version from 2.21.0 to 2.21.1

No new revisions were added by this update.



[PR] Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.1.2 to 3.2.1 [struts-examples]

2023-10-29 Thread via GitHub


dependabot[bot] opened a new pull request, #281:
URL: https://github.com/apache/struts-examples/pull/281

   Bumps 
[org.apache.maven.plugins:maven-failsafe-plugin](https://github.com/apache/maven-surefire)
 from 3.1.2 to 3.2.1.
   
   Commits
   
   https://github.com/apache/maven-surefire/commit/df9f657cb241c1f55ddde884249588080facffe3";>df9f657
 [maven-release-plugin] prepare release surefire-3.2.1
   https://github.com/apache/maven-surefire/commit/0910b750c5d8cfa41e27a7c586d17012b7efcb1f";>0910b75
 Fix formatting
   https://github.com/apache/maven-surefire/commit/97c84a1f9b83d1ac318d53d8ba8fba87b1c5462a";>97c84a1
 [maven-release-plugin] prepare for next development iteration
   https://github.com/apache/maven-surefire/commit/ad0639f1f59aee4647641fd0681c416dd46ac484";>ad0639f
 [maven-release-plugin] prepare release surefire-3.2.0
   https://github.com/apache/maven-surefire/commit/edfb96515553c548fddc58d2745d3e4c8e1367d3";>edfb965
 [SUREFIRE-2196] maven-surefire-report-plugin:failsafe-report-only failed: 
Unm...
   https://github.com/apache/maven-surefire/commit/0a5dba8a3678aca1682a518e79f39502ef3935ea";>0a5dba8
 [SUREFIRE-2188] Upgrade to Parent 40
   https://github.com/apache/maven-surefire/commit/5a0943805f7ef3da691bd4f39660346bfc7283d6";>5a09438
 [SUREFIRE-2202] NullPointerException if super class meets specific 
condition
   https://github.com/apache/maven-surefire/commit/176937dea760e602d5fddd65b88d83974ed06a4b";>176937d
 Simplify temp dir creation
   https://github.com/apache/maven-surefire/commit/9b79bdab7180aa00642e2d9dd85167e0fcaa662d";>9b79bda
 [SUREFIRE-1124] Support forkNumber in environment variables
   https://github.com/apache/maven-surefire/commit/296696441dbabfdb8b25f58c30330974f9b04c8a";>2966964
 Fix TestNG web site URL
   Additional commits viewable in https://github.com/apache/maven-surefire/compare/surefire-3.1.2...surefire-3.2.1";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-failsafe-plugin&package-manager=maven&previous-version=3.1.2&new-version=3.2.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts-examples) branch dependabot/maven/org.apache.maven.plugins-maven-failsafe-plugin-3.2.1 created (now 91e79ca)

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

github-bot pushed a change to branch 
dependabot/maven/org.apache.maven.plugins-maven-failsafe-plugin-3.2.1
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


  at 91e79ca  Bump org.apache.maven.plugins:maven-failsafe-plugin from 
3.1.2 to 3.2.1

No new revisions were added by this update.



[PR] Bump ossf/scorecard-action from 2.3.0 to 2.3.1 [struts]

2023-10-29 Thread via GitHub


dependabot[bot] opened a new pull request, #775:
URL: https://github.com/apache/struts/pull/775

   Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 
2.3.0 to 2.3.1.
   
   Release notes
   Sourced from https://github.com/ossf/scorecard-action/releases";>ossf/scorecard-action's
 releases.
   
   v2.3.1
   What's Changed
   
   :seedling: Bump github.com/ossf/scorecard/v4 from v4.13.0 to v4.13.1 by 
https://github.com/spencerschrock";>@​spencerschrock 
in https://redirect.github.com/ossf/scorecard-action/pull/1282";>ossf/scorecard-action#1282
   
   Adds additional Fuzzing detection and fixes a SAST bug related to 
detecting CodeQL. For a full changelist of what this includes, see the  https://github.com/ossf/scorecard/releases/tag/v4.13.1";>v4.13.1 
release notes
   
   
   
   Full Changelog: https://github.com/ossf/scorecard-action/compare/v2.3.0...v2.3.1";>https://github.com/ossf/scorecard-action/compare/v2.3.0...v2.3.1
   
   
   
   Commits
   
   https://github.com/ossf/scorecard-action/commit/0864cf19026789058feabb7e87baa5f140aac736";>0864cf1
 :seedling: Bump docker tag to for v2.3.1 release (https://redirect.github.com/ossf/scorecard-action/issues/1284";>#1284)
   https://github.com/ossf/scorecard-action/commit/72df3bff668d052aaec251accaffec0b280410fb";>72df3bf
 :seedling: Bump github.com/ossf/scorecard/v4 from v4.13.0 to v4.13.1 (https://redirect.github.com/ossf/scorecard-action/issues/1282";>#1282)
   https://github.com/ossf/scorecard-action/commit/0ea411f94ac145b6fd793458b7f75ebbe7ae0a8f";>0ea411f
 :seedling: Bump the docker-images group with 1 update (https://redirect.github.com/ossf/scorecard-action/issues/1281";>#1281)
   https://github.com/ossf/scorecard-action/commit/dbfd042453ccc43ade96943685dbece2dd86bbae";>dbfd042
 :seedling: Bump the github-actions group with 1 update (https://redirect.github.com/ossf/scorecard-action/issues/1280";>#1280)
   https://github.com/ossf/scorecard-action/commit/2fa1e2fa153141e2950c7e1299ed05e2081ead0c";>2fa1e2f
 :seedling: Bump golang.org/x/net from 0.16.0 to 0.17.0 (https://redirect.github.com/ossf/scorecard-action/issues/1278";>#1278)
   https://github.com/ossf/scorecard-action/commit/652ddd06c802ac1ba4021a9f02978dc5150b223e";>652ddd0
 :seedling: Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 (https://redirect.github.com/ossf/scorecard-action/issues/1277";>#1277)
   https://github.com/ossf/scorecard-action/commit/28d0c92b8bb9dd266a8cf4dde7bae71c06a0c62f";>28d0c92
 :seedling: Group Dependabot updates for GitHub Actions and Dockerfiles (https://redirect.github.com/ossf/scorecard-action/issues/1276";>#1276)
   https://github.com/ossf/scorecard-action/commit/cb50491a46a858cb57669a16a720b7a00e1f9d29";>cb50491
 :seedling: Bump distroless/base from a35b652 to 
b31a6e0 (https://redirect.github.com/ossf/scorecard-action/issues/1275";>#1275)
   https://github.com/ossf/scorecard-action/commit/87157ac77d7ec18a631049bc92fdac7ee63a471a";>87157ac
 :seedling: Bump github/codeql-action from 2.21.9 to 2.22.1 (https://redirect.github.com/ossf/scorecard-action/issues/1274";>#1274)
   https://github.com/ossf/scorecard-action/commit/7c1648b23e27a96acf7c3842fd1921d16bd8d4d2";>7c1648b
 :seedling: Bump step-security/harden-runner from 2.5.1 to 2.6.0 (https://redirect.github.com/ossf/scorecard-action/issues/1273";>#1273)
   Additional commits viewable in https://github.com/ossf/scorecard-action/compare/483ef80eb98fb506c348f7d62e28055e49fe2398...0864cf19026789058feabb7e87baa5f140aac736";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ossf/scorecard-action&package-manager=github_actions&previous-version=2.3.0&new-version=2.3.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@depen

(struts) branch dependabot/github_actions/ossf/scorecard-action-2.3.1 created (now 3ef0aa709)

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

github-bot pushed a change to branch 
dependabot/github_actions/ossf/scorecard-action-2.3.1
in repository https://gitbox.apache.org/repos/asf/struts.git


  at 3ef0aa709 Bump ossf/scorecard-action from 2.3.0 to 2.3.1

No new revisions were added by this update.



[PR] Bump junit:junit from 4.13.1 to 4.13.2 [struts]

2023-10-29 Thread via GitHub


dependabot[bot] opened a new pull request, #776:
URL: https://github.com/apache/struts/pull/776

   Bumps [junit:junit](https://github.com/junit-team/junit4) from 4.13.1 to 
4.13.2.
   
   Release notes
   Sourced from https://github.com/junit-team/junit4/releases";>junit:junit's 
releases.
   
   JUnit 4.13.2
   Please refer to the https://github.com/junit-team/junit/blob/HEAD/doc/ReleaseNotes4.13.2.md";>release
 notes for details.
   
   
   
   Commits
   
   https://github.com/junit-team/junit4/commit/05fe2a64f59127c02135be22f416e91260d6ede6";>05fe2a6
 [maven-release-plugin] prepare release r4.13.2
   https://github.com/junit-team/junit4/commit/ff57344f7171ea8b0935c4f842cacf1097266592";>ff57344
 Add build for JDK 17-ea
   https://github.com/junit-team/junit4/commit/02aaa01b8f74c0eb496d76685ec49fddeb311087";>02aaa01
 Improve check that thread is stopped
   https://github.com/junit-team/junit4/commit/e9a75f4be71a4d5a794ccd063522eea4b0f3194f";>e9a75f4
 Merge test for exception type and message
   https://github.com/junit-team/junit4/commit/d27ad5259228e84c235dac24cd62f974ac0a8e1d";>d27ad52
 Rename DelegateStatement to DelegatingStatement
   https://github.com/junit-team/junit4/commit/b83dc2e8c4ff06cf233cd347f1280bb417482985";>b83dc2e
 Better name for test that stops statement
   https://github.com/junit-team/junit4/commit/527f3a3d0d71ad6dc66ede6f68f6fc316904ed2a";>527f3a3
 Replace InfiniteLoop with RunForASecond
   https://github.com/junit-team/junit4/commit/2db63942882d91020b46d7333285e5c94f1d1e52";>2db6394
 Tidy up FailOnTimeoutTest
   https://github.com/junit-team/junit4/commit/64634e1c3e357251a84278c26b73b04fc3450ea3";>64634e1
 Update 4.13.2 release notes to document pull 1654
   https://github.com/junit-team/junit4/commit/f8ee412316b1a94d3dc35498359cc2f0ca273216";>f8ee412
 Fix serialization of AssumptionViolatedException (https://redirect.github.com/junit-team/junit4/issues/1654";>#1654)
   Additional commits viewable in https://github.com/junit-team/junit4/compare/r4.13.1...r4.13.2";>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=junit:junit&package-manager=maven&previous-version=4.13.1&new-version=4.13.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts) branch dependabot/maven/junit-junit-4.13.2 created (now f13284832)

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

github-bot pushed a change to branch dependabot/maven/junit-junit-4.13.2
in repository https://gitbox.apache.org/repos/asf/struts.git


  at f13284832 Bump junit:junit from 4.13.1 to 4.13.2

No new revisions were added by this update.



[PR] Bump org.jacoco:jacoco-maven-plugin from 0.8.8 to 0.8.11 [struts]

2023-10-29 Thread via GitHub


dependabot[bot] opened a new pull request, #777:
URL: https://github.com/apache/struts/pull/777

   Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) 
from 0.8.8 to 0.8.11.
   
   Release notes
   Sourced from https://github.com/jacoco/jacoco/releases";>org.jacoco:jacoco-maven-plugin's
 releases.
   
   0.8.11
   New Features
   
   JaCoCo now officially supports Java 21 (GitHub https://redirect.github.com/jacoco/jacoco/issues/1520";>#1520).
   Experimental support for Java 22 class files (GitHub https://redirect.github.com/jacoco/jacoco/issues/1479";>#1479).
   Part of bytecode generated by the Java compilers for exhaustive switch 
expressions is filtered out during generation of report (GitHub https://redirect.github.com/jacoco/jacoco/issues/1472";>#1472).
   Part of bytecode generated by the Java compilers for record patterns is 
filtered out during generation of report (GitHub https://redirect.github.com/jacoco/jacoco/issues/1473";>#1473).
   
   Fixed bugs
   
   Instrumentation should not cause VerifyError when the last 
local variable of method parameters is overridden in the method body to store a 
value of type long or double (GitHub https://redirect.github.com/jacoco/jacoco/issues/893";>#893).
   Restore exec file compatibility with versions from 0.7.5 to 0.8.8 in 
case of class files with zero line numbers (GitHub https://redirect.github.com/jacoco/jacoco/issues/1492";>#1492).
   
   Non-functional Changes
   
   jacoco-maven-plugin now requires at least Java 8 (GitHub https://redirect.github.com/jacoco/jacoco/issues/1466";>#1466, https://redirect.github.com/jacoco/jacoco/issues/1468";>#1468).
   JaCoCo build now requires at least Maven 3.5.4 (GitHub https://redirect.github.com/jacoco/jacoco/issues/1467";>#1467).
   Maven 3.9.2 should not produce warnings for jacoco-maven-plugin (GitHub 
https://redirect.github.com/jacoco/jacoco/issues/1468";>#1468).
   JaCoCo build now requires JDK 17 (GitHub https://redirect.github.com/jacoco/jacoco/issues/1482";>#1482).
   JaCoCo now depends on ASM 9.6 (GitHub https://redirect.github.com/jacoco/jacoco/issues/1518";>#1518).
   
   0.8.10
   Fixed bugs
   
   Agent should not require configuration of permissions for 
SecurityManager outside of its codeBase (GitHub https://redirect.github.com/jacoco/jacoco/issues/1425";>#1425).
   
   0.8.9
   New Features
   
   JaCoCo now officially supports Java 19 and 20 (GitHub https://redirect.github.com/jacoco/jacoco/issues/1371";>#1371, https://redirect.github.com/jacoco/jacoco/issues/1386";>#1386).
   Experimental support for Java 21 class files (GitHub https://redirect.github.com/jacoco/jacoco/issues/1386";>#1386).
   Add parameter to include the current project in the 
report-aggregate Maven goal (GitHub https://redirect.github.com/jacoco/jacoco/issues/1007";>#1007).
   Component accessors generated by the Java compilers for records are 
filtered out during generation of report. Contributed by Tesla Zhang (GitHub https://redirect.github.com/jacoco/jacoco/issues/1393";>#1393).
   
   Fixed bugs
   
   Agent should not open java.lang package to unnamed module 
of the application class loader (GitHub https://redirect.github.com/jacoco/jacoco/issues/1334";>#1334).
   
   Non-functional Changes
   
   JaCoCo now depends on ASM 9.5 (GitHub https://redirect.github.com/jacoco/jacoco/issues/1299";>#1299, https://redirect.github.com/jacoco/jacoco/issues/1368";>#1368, https://redirect.github.com/jacoco/jacoco/issues/1416";>#1416).
   JaCoCo build now requires JDK 11 (GitHub https://redirect.github.com/jacoco/jacoco/issues/1413";>#1413).
   
   
   
   
   Commits
   
   https://github.com/jacoco/jacoco/commit/f33756c37f1e41041d84018047b14cb394742761";>f33756c
 Prepare release 0.8.11
   https://github.com/jacoco/jacoco/commit/06705305b207bc42b3369f2c4ade598e4c1d7b12";>0670530
 Upgrade animal-sniffer-maven-plugin to 1.23
   https://github.com/jacoco/jacoco/commit/206e5bed2c4f11de6e6bf20e96a27c1f4ff93e0d";>206e5be
 Restore exec file compatibility after upgrade of ASM to version 9.5 (https://redirect.github.com/jacoco/jacoco/issues/1492";>#1492)
   https://github.com/jacoco/jacoco/commit/36fc079692f9cf6dcc2b6f391cc0d7fbe2a90a7a";>36fc079
 Update documentation: JDK version 21 is officially supported (https://redirect.github.com/jacoco/jacoco/issues/1520";>#1520)
   https://github.com/jacoco/jacoco/commit/7162917334d9094ebb10d66f9b0f971725ad754c";>7162917
 Add validation tests for boolean expressions (https://redirect.github.com/jacoco/jacoco/issues/1505";>#1505)
   https://github.com/jacoco/jacoco/commit/4bc9267836e2aba546eb4638e16bfa28ddd365a9";>4bc9267
 Fix link to Bytecode Outline Plug-In (https://redirect.github.com/jacoco/jacoco/issues/1519";>#1519)
   https://github.com/jacoco/jacoco/commit/ded62fc40764cc52003df527318fd081fafd6b75";>ded62fc
 Upgrade ASM to 9.6 (https://redirect.github.com/jacoco/jacoco/issues/1518";>#1518)
   https://github.com/jacoco/jacoco/commit/67982608d01b57107db31d0e0e02dda325f2cb

(struts) branch dependabot/maven/org.jacoco-jacoco-maven-plugin-0.8.11 created (now 453130666)

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

github-bot pushed a change to branch 
dependabot/maven/org.jacoco-jacoco-maven-plugin-0.8.11
in repository https://gitbox.apache.org/repos/asf/struts.git


  at 453130666 Bump org.jacoco:jacoco-maven-plugin from 0.8.8 to 0.8.11

No new revisions were added by this update.



Jenkins job Struts/Struts Core/PR-776#1 failed

2023-10-29 Thread Mr. Jenkins
There is a build failure in Struts/Struts Core/PR-776.

Build: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-776/1/
Logs: 
https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-776/1/console
Changes: 
https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-776/1/changes

--
Mr. Jenkins
Director of Continuous Integration

Re: [PR] Bump ossf/scorecard-action from 2.3.0 to 2.3.1 [struts]

2023-10-29 Thread via GitHub


lukaszlenart merged PR #775:
URL: https://github.com/apache/struts/pull/775


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts) 01/01: Merge pull request #775 from apache/dependabot/github_actions/ossf/scorecard-action-2.3.1

2023-10-29 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.git

commit 574da8111f08010defe226382dc29389e55d5466
Merge: bd388956c 3ef0aa709
Author: Lukasz Lenart 
AuthorDate: Mon Oct 30 07:02:31 2023 +0100

Merge pull request #775 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.3.1

Bump ossf/scorecard-action from 2.3.0 to 2.3.1

 .github/workflows/scorecards-analysis.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(struts) branch master updated (bd388956c -> 574da8111)

2023-10-29 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.git


from bd388956c Merge pull request #774 from apache/WW-5358-excl-list
 add 3ef0aa709 Bump ossf/scorecard-action from 2.3.0 to 2.3.1
 new 574da8111 Merge pull request #775 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.3.1

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/scorecards-analysis.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(struts) branch dependabot/github_actions/ossf/scorecard-action-2.3.1 deleted (was 3ef0aa709)

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

lukaszlenart pushed a change to branch 
dependabot/github_actions/ossf/scorecard-action-2.3.1
in repository https://gitbox.apache.org/repos/asf/struts.git


 was 3ef0aa709 Bump ossf/scorecard-action from 2.3.0 to 2.3.1

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 master updated (574da8111 -> 48b0c1173)

2023-10-29 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.git


from 574da8111 Merge pull request #775 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.3.1
 add f13284832 Bump junit:junit from 4.13.1 to 4.13.2
 add 48b0c1173 Merge pull request #776 from 
apache/dependabot/maven/junit-junit-4.13.2

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(struts) branch dependabot/maven/junit-junit-4.13.2 deleted (was f13284832)

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

lukaszlenart pushed a change to branch dependabot/maven/junit-junit-4.13.2
in repository https://gitbox.apache.org/repos/asf/struts.git


 was f13284832 Bump junit:junit from 4.13.1 to 4.13.2

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



Re: [PR] Bump org.jacoco:jacoco-maven-plugin from 0.8.8 to 0.8.11 [struts]

2023-10-29 Thread via GitHub


lukaszlenart merged PR #777:
URL: https://github.com/apache/struts/pull/777


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts) branch master updated (48b0c1173 -> 56fc1ddc5)

2023-10-29 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.git


from 48b0c1173 Merge pull request #776 from 
apache/dependabot/maven/junit-junit-4.13.2
 add 453130666 Bump org.jacoco:jacoco-maven-plugin from 0.8.8 to 0.8.11
 add 56fc1ddc5 Merge pull request #777 from 
apache/dependabot/maven/org.jacoco-jacoco-maven-plugin-0.8.11

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(struts) branch dependabot/maven/org.jacoco-jacoco-maven-plugin-0.8.11 deleted (was 453130666)

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

lukaszlenart pushed a change to branch 
dependabot/maven/org.jacoco-jacoco-maven-plugin-0.8.11
in repository https://gitbox.apache.org/repos/asf/struts.git


 was 453130666 Bump org.jacoco:jacoco-maven-plugin from 0.8.8 to 0.8.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.



Re: [PR] Bump org.eclipse.jetty:jetty-maven-plugin from 9.4.46.v20220331 to 11.0.15 [struts-examples]

2023-10-29 Thread via GitHub


lukaszlenart closed pull request #278: Bump 
org.eclipse.jetty:jetty-maven-plugin from 9.4.46.v20220331 to 11.0.15
URL: https://github.com/apache/struts-examples/pull/278


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts-examples) branch dependabot/maven/org.eclipse.jetty-jetty-maven-plugin-11.0.15 deleted (was d9ef94d)

2023-10-29 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-jetty-maven-plugin-11.0.15
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was d9ef94d  Bump org.eclipse.jetty:jetty-maven-plugin

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 (cffa797 -> c0a2eed)

2023-10-29 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 cffa797  Merge pull request #277 from apache/feature/upgrade-struts
 add 23a865d  Bump io.quarkus:quarkus-universe-bom from 3.4.3 to 3.5.0
 add c0a2eed  Merge pull request #279 from 
apache/dependabot/maven/io.quarkus-quarkus-universe-bom-3.5.0

No new revisions were added by this update.

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



(struts-examples) branch dependabot/maven/io.quarkus-quarkus-universe-bom-3.5.0 deleted (was 23a865d)

2023-10-29 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.5.0
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was 23a865d  Bump io.quarkus:quarkus-universe-bom from 3.4.3 to 3.5.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.



Re: [PR] Bump log4j2.version from 2.21.0 to 2.21.1 [struts-examples]

2023-10-29 Thread via GitHub


lukaszlenart merged PR #280:
URL: https://github.com/apache/struts-examples/pull/280


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts-examples) branch dependabot/maven/log4j2.version-2.21.1 deleted (was 9db0e6c)

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

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


 was 9db0e6c  Bump log4j2.version from 2.21.0 to 2.21.1

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 (c0a2eed -> 9bf8120)

2023-10-29 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 c0a2eed  Merge pull request #279 from 
apache/dependabot/maven/io.quarkus-quarkus-universe-bom-3.5.0
 add 9db0e6c  Bump log4j2.version from 2.21.0 to 2.21.1
 new 9bf8120  Merge pull request #280 from 
apache/dependabot/maven/log4j2.version-2.21.1

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



(struts-examples) 01/01: Merge pull request #280 from apache/dependabot/maven/log4j2.version-2.21.1

2023-10-29 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 9bf8120800d2d9111adaccded24607cab49905bf
Merge: c0a2eed 9db0e6c
Author: Lukasz Lenart 
AuthorDate: Mon Oct 30 07:04:31 2023 +0100

Merge pull request #280 from apache/dependabot/maven/log4j2.version-2.21.1

Bump log4j2.version from 2.21.0 to 2.21.1

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



Re: [PR] Bump junit:junit from 4.13.1 to 4.13.2 [struts]

2023-10-29 Thread via GitHub


lukaszlenart merged PR #776:
URL: https://github.com/apache/struts/pull/776


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts-examples) branch master updated (9bf8120 -> de0003a)

2023-10-29 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 9bf8120  Merge pull request #280 from 
apache/dependabot/maven/log4j2.version-2.21.1
 add 91e79ca  Bump org.apache.maven.plugins:maven-failsafe-plugin from 
3.1.2 to 3.2.1
 new de0003a  Merge pull request #281 from 
apache/dependabot/maven/org.apache.maven.plugins-maven-failsafe-plugin-3.2.1

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) branch dependabot/maven/org.apache.maven.plugins-maven-failsafe-plugin-3.2.1 deleted (was 91e79ca)

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

lukaszlenart pushed a change to branch 
dependabot/maven/org.apache.maven.plugins-maven-failsafe-plugin-3.2.1
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was 91e79ca  Bump org.apache.maven.plugins:maven-failsafe-plugin from 
3.1.2 to 3.2.1

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



Re: [PR] Bump io.quarkus:quarkus-universe-bom from 3.4.3 to 3.5.0 [struts-examples]

2023-10-29 Thread via GitHub


lukaszlenart merged PR #279:
URL: https://github.com/apache/struts-examples/pull/279


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.1.2 to 3.2.1 [struts-examples]

2023-10-29 Thread via GitHub


lukaszlenart merged PR #281:
URL: https://github.com/apache/struts-examples/pull/281


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(struts-examples) 01/01: Merge pull request #281 from apache/dependabot/maven/org.apache.maven.plugins-maven-failsafe-plugin-3.2.1

2023-10-29 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 de0003a630cf288850bcdfec94902d34f3627e26
Merge: 9bf8120 91e79ca
Author: Lukasz Lenart 
AuthorDate: Mon Oct 30 07:04:38 2023 +0100

Merge pull request #281 from 
apache/dependabot/maven/org.apache.maven.plugins-maven-failsafe-plugin-3.2.1

Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.1.2 to 3.2.1

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




Jenkins job Struts/Struts Core/PR-770#5 failed

2023-10-29 Thread Mr. Jenkins
There is a build failure in Struts/Struts Core/PR-770.

Build: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-770/5/
Logs: 
https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-770/5/console
Changes: 
https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-770/5/changes

--
Mr. Jenkins
Director of Continuous Integration

Jenkins job Struts/Struts Core/PR-761#11 failed

2023-10-29 Thread Mr. Jenkins
There is a build failure in Struts/Struts Core/PR-761.

Build: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-761/11/
Logs: 
https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-761/11/console
Changes: 
https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-761/11/changes

--
Mr. Jenkins
Director of Continuous Integration

Jenkins job Struts/Struts Core/master#297 failed

2023-10-29 Thread Mr. Jenkins
There is a build failure in Struts/Struts Core/master.

Build: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/master/297/
Logs: 
https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/master/297/console
Changes: 
https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/master/297/changes

--
Mr. Jenkins
Director of Continuous Integration