Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-28 Thread via GitHub


Claudenw commented on PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#issuecomment-2380625900

   @ottlinger  are we good to merge this PR?


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-409: Site build requires Project target [creadur-rat]

2024-09-28 Thread via GitHub


Claudenw commented on code in PR #333:
URL: https://github.com/apache/creadur-rat/pull/333#discussion_r1779475719


##
.github/workflows/maven.yml:
##
@@ -68,4 +68,4 @@ jobs:
 run: ./mvnw -e -B -V -ntp javadoc:javadoc
 
   - name: Build site
-run: ./mvnw -e -B -V -ntp site
+run: ./mvnw -e -B -V -ntp site site:stage

Review Comment:
   see my comments above about the necessity for `package`, `site` and 
`site:stage`.
   
   from the maven site plugin documentation:
   ```
   Staging directory location. This needs to be an absolute path, like 
C:\stagingArea\myProject\ on Windows or stagingArea/myProject/ on Unix. If this 
is not specified, the site will be staged in ${project.build.directory}
   staging.
   User Property: stagingDirectory
   ```
   
   I redid my initial investigation and discovered that in the 
distributionManagement/site section of the pom the URL is required even though 
the plugin documentation would lead me to believe otherwise.  The URL in our 
case has several problems:
   
   - It can not be relative (as per the docs).  Making it so causes a staging 
directory to be created in every sub module.
   - We can not specify a fully qualified directory since we do not know 
directory or even OS for the varoious build systems.
   
   I did find that if an invalid URL is specified the default path as specified 
in the documents will be used.  thus `file:bogus` works.  I am changing that to 
`invalid:url` to be more clear and will add comments in the pom to explain what 
is happening.  I have also opened a 
[ticket](https://issues.apache.org/jira/browse/MSITE-1016) requesting a fix 
form the site plugin team.
   



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-409: Site build requires Project target [creadur-rat]

2024-09-28 Thread via GitHub


Claudenw commented on code in PR #333:
URL: https://github.com/apache/creadur-rat/pull/333#discussion_r1779475719


##
.github/workflows/maven.yml:
##
@@ -68,4 +68,4 @@ jobs:
 run: ./mvnw -e -B -V -ntp javadoc:javadoc
 
   - name: Build site
-run: ./mvnw -e -B -V -ntp site
+run: ./mvnw -e -B -V -ntp site site:stage

Review Comment:
   see my comments above about the necessity for `package`, `site` and 
`site:stage`.
   
   from the maven site plugin documentation:
   ```
   Staging directory location. This needs to be an absolute path, like 
C:\stagingArea\myProject\ on Windows or stagingArea/myProject/ on Unix. If this 
is not specified, the site will be staged in ${project.build.directory}
   staging.
   User Property: stagingDirectory```
   
   I redid my initial investigation and discovered that in the 
distributionManagement/site section of the pom the URL is required even though 
the plugin documentation would lead me to believe otherwise.  The URL in our 
case has several problems:
   
   - It can not be relative (as per the docs).  Making it so causes a staging 
directory to be created in every sub module.
   - We can not specify a fully qualified directory since we do not know 
directory or even OS for the varoious build systems.
   
   I did find that if an invalid URL is specified the default path as specified 
in the documents will be used.  thus `file:bogus` works.  I am changing that to 
`invalid:url` to be more clear and will add comments in the pom to explain what 
is happening.  I have also opened a 
[ticket](https://issues.apache.org/jira/browse/MSITE-1016) requesting a fix 
form the site plugin team.
   



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-409: Site build requires Project target [creadur-rat]

2024-09-28 Thread via GitHub


Claudenw commented on code in PR #333:
URL: https://github.com/apache/creadur-rat/pull/333#discussion_r1779464840


##
.buildtools/generateStagingSiteInWebpageRepo:
##
@@ -14,6 +14,6 @@
 # limitations under the License.
 #
 # DEVHINT: RAT-302: Do not use modern JDK due to the javadoc problem; JDK8 and 
16 are okay
-./mvnw clean site:site site:stage
+./mvnw clean package site site:stage -DskipTests

Review Comment:
   I did some testing this morning. 
   
   - We need `package` because without it the final jar in the `apache-rat` 
module is not generated, and that jar is used in the `site:pre-site` processes 
to generate the included files for the `*.apt.vm` processing.
   - We need `site` because that generates the site for all the `apache-rat-*` 
modules.  Without that the `site:stage` fails.
   - We need `site:stage` to get a complete staged site.
   
   I will assume you are correct and remove the `-D skipTests`
   



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-28 Thread via GitHub


Claudenw commented on code in PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#discussion_r1779464139


##
apache-rat-tasks/src/site/apt/examples/basic.apt.vm:
##
@@ -59,28 +58,47 @@ java -jar apache-rat-${project.version}.jar src
   The equivalent of
 
 +--+
-java -jar apache-rat-${project.version}.jar --addlicense
-  --copyright "Copyright 2008 Foo"
+java -jar apache-rat-${project.version}.jar --edit-license
+  --edit-copyright "Copyright 2008 Foo"
   /path/to/project
 +--+
 
   is
 
 ---
-
+
 
 
 ---
 
-* Create a styled HTML report
+* Create a styled report
+
+ There are two types of styled reports, both are activated by using the 
"outputStyled" attribute on the "rat:report" element.
+
+ The first is the standard report type.  This uses one of the standard reports 
shipped with Rat which are activated by setting the value of "outputStyled" to 
the name of the report.
+
+ *  plain-rat: The default style
+
+ * missing-headers: Produces a report of files that are missing headers
+
+ * unapproved-licenses: Produces a report of the files with unapproved 
licenses
+
+ * xml: The default style.

Review Comment:
   You are right.  It should say pretty printed XML.  I  see you updated the 
text.  I have updated the Sylesheet documentation in code.



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-27 Thread via GitHub


ottlinger commented on code in PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#discussion_r1778785165


##
apache-rat-tasks/src/site/apt/examples/basic.apt.vm:
##
@@ -59,28 +59,25 @@ java -jar apache-rat-${project.version}.jar src
   The equivalent of
 
 +--+
-java -jar apache-rat-${project.version}.jar --addlicense
-  --copyright "Copyright 2008 Foo"
+java -jar apache-rat-${project.version}.jar --edit-license
+  --edit-copyright "Copyright 2008 Foo"
   /path/to/project
 +--+
 
   is
 
 ---
-
+
 
 
 ---
 
 * Create a styled HTML report
 
 ---
-
+

Review Comment:
   Thanks for the enhanced docs!



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-409: Site build requires Project target [creadur-rat]

2024-09-27 Thread via GitHub


ottlinger commented on code in PR #333:
URL: https://github.com/apache/creadur-rat/pull/333#discussion_r1778793025


##
.github/workflows/maven.yml:
##
@@ -68,4 +68,4 @@ jobs:
 run: ./mvnw -e -B -V -ntp javadoc:javadoc
 
   - name: Build site
-run: ./mvnw -e -B -V -ntp site
+run: ./mvnw -e -B -V -ntp site site:stage

Review Comment:
   That's exactly what I meant - instead of "mvn site site:stage" shouldn't 
"mvn site:stage" be enough?
   
   Is the stage build correct as the pom does not contain a valid site URL:
   ```
 
   
 staging
 file:bogus
   
 
   ```
   
   Therefore it was not used before.



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-409: Site build requires Project target [creadur-rat]

2024-09-27 Thread via GitHub


ottlinger commented on code in PR #333:
URL: https://github.com/apache/creadur-rat/pull/333#discussion_r1778793025


##
.github/workflows/maven.yml:
##
@@ -68,4 +68,4 @@ jobs:
 run: ./mvnw -e -B -V -ntp javadoc:javadoc
 
   - name: Build site
-run: ./mvnw -e -B -V -ntp site
+run: ./mvnw -e -B -V -ntp site site:stage

Review Comment:
   That's exactly what I meant - instead of "mvn site site:stage" shouldn't 
"mvn site:stage" be enough?
   
   Is the stage build correct as the pom does not contain a valid site URL:
 
   
 staging
 file:bogus
   
 
   
   Therefore it was not used before.



-- 
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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump com.fasterxml.jackson.module:jackson-module-jaxb-annotations from 2.17.2 to 2.18.0 [creadur-tentacles]

2024-09-27 Thread via GitHub


dependabot[bot] opened a new pull request, #153:
URL: https://github.com/apache/creadur-tentacles/pull/153

   Bumps 
[com.fasterxml.jackson.module:jackson-module-jaxb-annotations](https://github.com/FasterXML/jackson-modules-base)
 from 2.17.2 to 2.18.0.
   
   Commits
   
   https://github.com/FasterXML/jackson-modules-base/commit/684ac1eea16046ca034b28f7384a073126dba5e3";>684ac1e
 [maven-release-plugin] prepare release jackson-modules-base-2.18.0
   https://github.com/FasterXML/jackson-modules-base/commit/6c844b3a6f1dabccf73a2f7410ff96211f5befff";>6c844b3
 Prepare for 2.18.0 release
   https://github.com/FasterXML/jackson-modules-base/commit/7ae022a60ca2b6983ce287ea5e3187dfcdf75136";>7ae022a
 Update release notes
   https://github.com/FasterXML/jackson-modules-base/commit/f269b35352a6c6dba88b9bd39974849de0e55c4c";>f269b35
 Merge pull request https://redirect.github.com/FasterXML/jackson-modules-base/issues/252";>#252
 from HelloOO7/2.18
   https://github.com/FasterXML/jackson-modules-base/commit/fb007fd75c20f88c7510d831826dff14811eb72a";>fb007fd
 android-record: Adapt generic types returned by Android reflection to follow 
...
   https://github.com/FasterXML/jackson-modules-base/commit/032b52e668f74b7d5e3664893a7d606d8699dc2f";>032b52e
 android-record: Adapt generic types returned by Android reflection to follow 
...
   https://github.com/FasterXML/jackson-modules-base/commit/862ff03dd6a50d285a651a078fb2267caa34ae7a";>862ff03
 Merge pull request https://redirect.github.com/FasterXML/jackson-modules-base/issues/250";>#250
 from FasterXML/dependabot/github_actions/github-actio...
   https://github.com/FasterXML/jackson-modules-base/commit/d9fae8e7ad7d9f1988a4a928d4ada9b1b4ab6a96";>d9fae8e
 Bump actions/setup-java from 4.2.1 to 4.2.2 in the github-actions group
   https://github.com/FasterXML/jackson-modules-base/commit/26a388def98c561d0b083d63f82b36f49b2b50af";>26a388d
 Back to snapshot
   https://github.com/FasterXML/jackson-modules-base/commit/919d63628e2602a20b6e2e387cfa7346dc834a0b";>919d636
 [maven-release-plugin] prepare for next development iteration
   Additional commits viewable in https://github.com/FasterXML/jackson-modules-base/compare/jackson-modules-base-2.17.2...jackson-modules-base-2.18.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.module:jackson-module-jaxb-annotations&package-manager=maven&previous-version=2.17.2&new-version=2.18.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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-27 Thread via GitHub


ottlinger commented on code in PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#discussion_r1778780165


##
apache-rat-tasks/src/site/apt/examples/basic.apt.vm:
##
@@ -59,28 +58,47 @@ java -jar apache-rat-${project.version}.jar src
   The equivalent of
 
 +--+
-java -jar apache-rat-${project.version}.jar --addlicense
-  --copyright "Copyright 2008 Foo"
+java -jar apache-rat-${project.version}.jar --edit-license
+  --edit-copyright "Copyright 2008 Foo"
   /path/to/project
 +--+
 
   is
 
 ---
-
+
 
 
 ---
 
-* Create a styled HTML report
+* Create a styled report
+
+ There are two types of styled reports, both are activated by using the 
"outputStyled" attribute on the "rat:report" element.
+
+ The first is the standard report type.  This uses one of the standard reports 
shipped with Rat which are activated by setting the value of "outputStyled" to 
the name of the report.
+
+ *  plain-rat: The default style
+
+ * missing-headers: Produces a report of files that are missing headers
+
+ * unapproved-licenses: Produces a report of the files with unapproved 
licenses
+
+ * xml: The default style.

Review Comment:
   As the default output is text I assume "xml" should have a different text or 
is the Ant version a combination of XML+RAT default report?



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] TENTACLES-16: Bump com.fasterxml.jackson.module:jackson-module-jaxb-annotations from 2.17.2 to 2.18.0 [creadur-tentacles]

2024-09-27 Thread via GitHub


ottlinger merged PR #153:
URL: https://github.com/apache/creadur-tentacles/pull/153


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-409: Site build requires Project target [creadur-rat]

2024-09-26 Thread via GitHub


Claudenw commented on code in PR #333:
URL: https://github.com/apache/creadur-rat/pull/333#discussion_r1778101006


##
.github/workflows/maven.yml:
##
@@ -68,4 +68,4 @@ jobs:
 run: ./mvnw -e -B -V -ntp javadoc:javadoc
 
   - name: Build site
-run: ./mvnw -e -B -V -ntp site
+run: ./mvnw -e -B -V -ntp site site:stage

Review Comment:
   From the site plugin documentation:
   
   
```[site:stage](https://maven.apache.org/plugins/maven-site-plugin/stage-mojo.html)
 generates a site in a local staging or mock directory based on the site URL 
specified in the  section of the POM. It can be used to 
test that links between module sites in a multi module build work. This goal 
requires the site to already have been generated using the site goal, such as 
by calling mvn site.```
   
   So I think `site site:stage` is correct. 



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-26 Thread via GitHub


Claudenw commented on code in PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#discussion_r162958


##
src/site/site.xml:
##
@@ -61,6 +61,15 @@
   
   
   
+  https://github.com/apache/creadur-rat/blob/master/apache-rat-core/src/main/resources/org/apache/rat/default.xml";
 />

Review Comment:
   fixed



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] TENTACLES-16: Bump org.codehaus.mojo:extra-enforcer-rules from 1.8.0 to 1.9.0 [creadur-tentacles]

2024-09-26 Thread via GitHub


ottlinger merged PR #152:
URL: https://github.com/apache/creadur-tentacles/pull/152


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] Bump actions/setup-java from 4.3.0 to 4.4.0 [creadur-whisker]

2024-09-26 Thread via GitHub


ottlinger merged PR #192:
URL: https://github.com/apache/creadur-whisker/pull/192


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] Bump org.apache.velocity:velocity-engine-core from 2.3 to 2.4 [creadur-whisker]

2024-09-26 Thread via GitHub


ottlinger merged PR #190:
URL: https://github.com/apache/creadur-whisker/pull/190


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] Bump org.codehaus.mojo:jdepend-maven-plugin from 2.0 to 2.1 [creadur-whisker]

2024-09-26 Thread via GitHub


ottlinger merged PR #191:
URL: https://github.com/apache/creadur-whisker/pull/191


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-26 Thread via GitHub


Claudenw commented on code in PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#discussion_r1777399962


##
src/site/apt/index.apt.vm:
##
@@ -96,8 +96,11 @@ Apache Rat™
 
 * Quick Start: Running Rat
 
-  There are three user interfaces for Rat: from the command line, from Ant, 
and from Maven.  All three of the interfaces

Review Comment:
   Ahhh  got it.  Good catch.  Sorry I was a bit slow.



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-26 Thread via GitHub


ottlinger commented on code in PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#discussion_r1777072896


##
apache-rat-tasks/src/site/apt/examples/basic.apt.vm:
##
@@ -59,28 +59,25 @@ java -jar apache-rat-${project.version}.jar src
   The equivalent of
 
 +--+
-java -jar apache-rat-${project.version}.jar --addlicense
-  --copyright "Copyright 2008 Foo"
+java -jar apache-rat-${project.version}.jar --edit-license
+  --edit-copyright "Copyright 2008 Foo"
   /path/to/project
 +--+
 
   is
 
 ---
-
+
 
 
 ---
 
 * Create a styled HTML report
 
 ---
-
+

Review Comment:
   I just looked at the diff - If I take a look at the old page, I see how I 
can define a styled report into rat.html.
   
   The new version of the webpage contains a (somewhere?) defined/shown XSLT - 
to my mind we should either show that XSLT or provide an example without an 
XSLT  that's what I tried to mention as a comment :) HTH?



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-26 Thread via GitHub


ottlinger commented on code in PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#discussion_r1777069610


##
src/site/apt/index.apt.vm:
##
@@ -96,8 +96,11 @@ Apache Rat™
 
 * Quick Start: Running Rat
 
-  There are three user interfaces for Rat: from the command line, from Ant, 
and from Maven.  All three of the interfaces

Review Comment:
   I was just irritated that the sentence was gone - maybe the diff was shown 
wrongly? Is the sentence still there on the main page? That's what my comment 
intended. Thx



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-409: Site build requires Project target [creadur-rat]

2024-09-26 Thread via GitHub


ottlinger commented on code in PR #333:
URL: https://github.com/apache/creadur-rat/pull/333#discussion_r1777014944


##
.github/workflows/maven.yml:
##
@@ -68,4 +68,4 @@ jobs:
 run: ./mvnw -e -B -V -ntp javadoc:javadoc
 
   - name: Build site
-run: ./mvnw -e -B -V -ntp site
+run: ./mvnw -e -B -V -ntp site site:stage

Review Comment:
   After having read 
https://maven.apache.org/plugins/maven-site-plugin/usage.html I wonder if "mvn 
site:stage" is what we want instead of the rest .
   so a "mvn clean site:stage" should be sufficient?!



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-409: Site build requires Project target [creadur-rat]

2024-09-26 Thread via GitHub


ottlinger commented on code in PR #333:
URL: https://github.com/apache/creadur-rat/pull/333#discussion_r1777010486


##
.buildtools/generateStagingSiteInWebpageRepo:
##
@@ -14,6 +14,6 @@
 # limitations under the License.
 #
 # DEVHINT: RAT-302: Do not use modern JDK due to the javadoc problem; JDK8 and 
16 are okay
-./mvnw clean site:site site:stage
+./mvnw clean package site site:stage -DskipTests

Review Comment:
   AFAIK tests are needed to calculate the coverage metrics?
   
   Does not site:site trigger an explicit package/install? If the clean is run 
before, all stuff should be generated freshly.



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-26 Thread via GitHub


Claudenw commented on code in PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#discussion_r1776577565


##
src/site/apt/index.apt.vm:
##
@@ -96,8 +96,11 @@ Apache Rat™
 
 * Quick Start: Running Rat
 
-  There are three user interfaces for Rat: from the command line, from Ant, 
and from Maven.  All three of the interfaces

Review Comment:
   Isn't this the starting page of rat?



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-26 Thread via GitHub


Claudenw commented on code in PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#discussion_r1776572978


##
apache-rat-tasks/src/site/apt/examples/basic.apt.vm:
##
@@ -59,28 +59,25 @@ java -jar apache-rat-${project.version}.jar src
   The equivalent of
 
 +--+
-java -jar apache-rat-${project.version}.jar --addlicense
-  --copyright "Copyright 2008 Foo"
+java -jar apache-rat-${project.version}.jar --edit-license
+  --edit-copyright "Copyright 2008 Foo"
   /path/to/project
 +--+
 
   is
 
 ---
-
+
 
 
 ---
 
 * Create a styled HTML report
 
 ---
-
+

Review Comment:
   I am not certain what you are saying.  However here is how the outputStyle 
works.
   
   - If not set use "plain-rat"
   - May be set to one of the named XSLTs specified in the StyleSheets class:
   -  plain-rat - standard default.
   - missing-headers - enumerates files with missing headers
   - unapproved-licenses - files with unapproved licenses
   - xml - a pretty printed XML output.
- My specify a file on the file system.
   
   So I think we cover all the old "styled" optons, unless I am missing 
something.



-- 
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: dev-unsubscr...@creadur.apache.org

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



[PR] RAT-409: Site build requires Project target [creadur-rat]

2024-09-25 Thread via GitHub


Claudenw opened a new pull request, #333:
URL: https://github.com/apache/creadur-rat/pull/333

   Fixes RAT-409
   
   added flags targets to create a complete site build


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-25 Thread via GitHub


ottlinger commented on code in PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#discussion_r1771339751


##
src/site/site.xml:
##
@@ -61,6 +61,15 @@
   
   
   
+  https://github.com/apache/creadur-rat/blob/master/apache-rat-core/src/main/resources/org/apache/rat/default.xml";
 />

Review Comment:
   Pls use gitbox links to remain on ASF infra consistently.



-- 
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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump actions/setup-java from 4.3.0 to 4.4.0 [creadur-whisker]

2024-09-24 Thread via GitHub


dependabot[bot] opened a new pull request, #192:
URL: https://github.com/apache/creadur-whisker/pull/192

   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4.3.0 
to 4.4.0.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v4.4.0
   What's Changed
   Add-ons :
   
   Add support for Oracle GraalVM by https://github.com/fniephaus";>@​fniephaus in https://redirect.github.com/actions/setup-java/pull/501";>actions/setup-java#501
   
   steps:
- name: Checkout
  uses: actions/checkout@v4
- name: Setup-java
  uses: actions/setup-java@v4
  with:
distribution: 'graalvm'
java-version: '21'
   
   
   Add workflow file for publishing releases to immutable action package by 
https://github.com/Jcambass";>@​Jcambass in https://redirect.github.com/actions/setup-java/pull/684";>actions/setup-java#684
   
   Bug fixes :
   
   Add architecture to cache key by https://github.com/Zxilly";>@​Zxilly in https://redirect.github.com/actions/setup-java/pull/664";>actions/setup-java#664
   This addresses issues with caching by adding the architecture (arch) to the 
cache key, ensuring that cache keys are accurate to prevent conflicts.
   Note: This change may break previous cache keys as they will no longer be 
compatible with the new format.
   Resolve check failures by https://github.com/aparnajyothi-y";>@​aparnajyothi-y in 
https://redirect.github.com/actions/setup-java/pull/687";>actions/setup-java#687
   
   New Contributors
   
   https://github.com/Jcambass";>@​Jcambass made 
their first contribution in https://redirect.github.com/actions/setup-java/pull/684";>actions/setup-java#684
   https://github.com/Zxilly";>@​Zxilly made their 
first contribution in https://redirect.github.com/actions/setup-java/pull/664";>actions/setup-java#664
   
   Full Changelog: https://github.com/actions/setup-java/compare/v4...v4.4.0";>https://github.com/actions/setup-java/compare/v4...v4.4.0
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/b36c23c0d998641eff861008f374ee103c25ac73";>b36c23c
 check-dist-failure-fix (https://redirect.github.com/actions/setup-java/issues/687";>#687)
   https://github.com/actions/setup-java/commit/40b9536ce5efadffec365e30f26f62a3640d2548";>40b9536
 fix: add arch to cache key (https://redirect.github.com/actions/setup-java/issues/664";>#664)
   https://github.com/actions/setup-java/commit/0a40ce6f61952640a8940ea8050407c06cb5";>0a40ce6
 Add support for Oracle GraalVM (https://redirect.github.com/actions/setup-java/issues/501";>#501)
   https://github.com/actions/setup-java/commit/bcfbca5b713b77435aded8de683c7ee5e79f63cb";>bcfbca5
 Merge pull request https://redirect.github.com/actions/setup-java/issues/684";>#684 from 
actions/Jcambass-patch-1
   https://github.com/actions/setup-java/commit/78eae7945c050692110fb75199251cfe322201d4";>78eae79
 Add workflow file for publishing releases to immutable action package
   See full diff in https://github.com/actions/setup-java/compare/v4.3.0...v4.4.0";>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-java&package-manager=github_actions&previous-version=4.3.0&new-version=4.4.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] Bump org.codehaus.mojo:jdepend-maven-plugin from 2.0 to 2.1 [creadur-whisker]

2024-09-23 Thread via GitHub


dependabot[bot] opened a new pull request, #191:
URL: https://github.com/apache/creadur-whisker/pull/191

   Bumps 
[org.codehaus.mojo:jdepend-maven-plugin](https://github.com/mojohaus/jdepend-maven-plugin)
 from 2.0 to 2.1.
   
   Release notes
   Sourced from https://github.com/mojohaus/jdepend-maven-plugin/releases";>org.codehaus.mojo:jdepend-maven-plugin's
 releases.
   
   2.1
   Changes
   🚀 New features and improvements
   
   Require Maven 3.6.3+ (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/30";>#30)
 https://github.com/slachiewicz";>@​slachiewicz
   
   🐛 Bug Fixes
   
   Hardening of sax parser (even if we only read files produced by the tool 
(https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/36";>#36)
 https://github.com/olamy";>@​olamy
   
   📦 Dependency updates
   
   Bump org.codehaus.mojo:mojo-parent from 85 to 86 (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/40";>#40)
 https://github.com/dependabot";>@​dependabot
   Bump org.codehaus.mojo:mojo-parent from 84 to 85 (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/38";>#38)
 https://github.com/dependabot";>@​dependabot
   Bump org.codehaus.mojo:mojo-parent from 82 to 84 (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/37";>#37)
 https://github.com/dependabot";>@​dependabot
   Bump org.codehaus.mojo:mojo-parent from 80 to 82 (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/34";>#34)
 https://github.com/dependabot";>@​dependabot
   Bump org.codehaus.plexus:plexus-xml from 3.0.0 to 3.0.1 (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/35";>#35)
 https://github.com/dependabot";>@​dependabot
   Bump org.codehaus.plexus:plexus-utils from 4.0.0 to 4.0.1 (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/33";>#33)
 https://github.com/dependabot";>@​dependabot
   Bump org.codehaus.mojo:mojo-parent from 78 to 80 (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/28";>#28)
 https://github.com/dependabot";>@​dependabot
   Require Maven 3.6.3+ (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/30";>#30)
 https://github.com/slachiewicz";>@​slachiewicz
   Bump org.codehaus.plexus:plexus-utils from 3.4.1 to 4.0.0 (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/26";>#26)
 https://github.com/dependabot";>@​dependabot
   Bump apache/maven-gh-actions-shared from 3 to 4 (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/29";>#29)
 https://github.com/dependabot";>@​dependabot
   Bump org.apache.maven.reporting:maven-reporting-api from 3.1.0 to 3.1.1 
(https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/17";>#17)
 https://github.com/dependabot";>@​dependabot
   Bump org.codehaus.mojo:license-maven-plugin from 1.6 to 2.4.0 (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/24";>#24)
 https://github.com/dependabot";>@​dependabot
   Bump actions/stale from 8 to 9 (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/21";>#21)
 https://github.com/dependabot";>@​dependabot
   Bump release-drafter/release-drafter from 5 to 6 (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/22";>#22)
 https://github.com/dependabot";>@​dependabot
   
   👻 Maintenance
   
   Bump org.codehaus.plexus:plexus-utils from 3.0.18 to 3.0.24 in 
/src/it/jdepend-example (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/31";>#31)
 https://github.com/dependabot";>@​dependabot
   remove inherited version (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/25";>#25)
 https://github.com/olamy";>@​olamy
   Use Mojo parent 78 (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/23";>#23)
 https://github.com/olamy";>@​olamy
   upgrade shared gha used, add dependabot, release drafter (https://redirect.github.com/mojohaus/jdepend-maven-plugin/pull/15";>#15)
 https://github.com/olamy";>@​olamy
   
   
   
   
   Commits
   
   https://github.com/mojohaus/jdepend-maven-plugin/commit/8605ef174b1dafc29131838a7eb94c2a06da48df";>8605ef1
 [maven-release-plugin] prepare release 2.1
   https://github.com/mojohaus/jdepend-maven-plugin/commit/4a1ab84442fdb89c86751842e71f6fc5fbebd399";>4a1ab84
 add tag element in scm to be able to release
   https://github.com/mojohaus/jdepend-maven-plugin/commit/7558453cea8c2847731c30981cf5f6d72414dc99";>7558453
 Bump org.codehaus.mojo:mojo-parent from 85 to 86
   https://github.com/mojohaus/jdepend-maven-plugin/commit/77b8431ade068d2a9980d4fa84c89c340c371618";>77b8431
 Bump org.codehaus.mojo:mojo-parent from 84 to 85
   https://github.com/mojohaus/jdepend-maven-plugin/commit/6350059db095e4a6cfd30aa611b92140f4384c79";>6350059
 Hardening of sax parser (even if we only read files produced by the tool (https://redirect.github.com/mojohaus/jdepend-maven-plugin/issues/36";>#36)
   https://github.com/mojohaus/jdepend-maven-plugin/commit/125023fe07c7ce52b549af6862f1591a00e15a2a";>125023f
 Bump org.codehaus.mojo:mojo-parent from 8

[PR] Bump org.apache.velocity:velocity-engine-core from 2.3 to 2.4 [creadur-whisker]

2024-09-23 Thread via GitHub


dependabot[bot] opened a new pull request, #190:
URL: https://github.com/apache/creadur-whisker/pull/190

   Bumps org.apache.velocity:velocity-engine-core from 2.3 to 2.4.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.velocity:velocity-engine-core&package-manager=maven&previous-version=2.3&new-version=2.4)](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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump org.codehaus.mojo:extra-enforcer-rules from 1.8.0 to 1.9.0 [creadur-tentacles]

2024-09-23 Thread via GitHub


dependabot[bot] opened a new pull request, #152:
URL: https://github.com/apache/creadur-tentacles/pull/152

   Bumps 
[org.codehaus.mojo:extra-enforcer-rules](https://github.com/mojohaus/extra-enforcer-rules)
 from 1.8.0 to 1.9.0.
   
   Release notes
   Sourced from https://github.com/mojohaus/extra-enforcer-rules/releases";>org.codehaus.mojo:extra-enforcer-rules's
 releases.
   
   1.9.0
   
   🚀 New features and improvements
   
   Recognize JDK 24 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/308";>#308)
 https://github.com/wendigo";>@​wendigo
   Make parent level configurable for reference value in 
requirePropertyDiverges (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/295";>#295)
 https://github.com/piercemar";>@​piercemar
   
   📦 Dependency updates
   
   Bump org.codehaus.mojo:mojo-parent from 85 to 86 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/307";>#307)
 https://github.com/dependabot";>@​dependabot
   Bump org.codehaus.mojo:mojo-parent from 84 to 85 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/306";>#306)
 https://github.com/dependabot";>@​dependabot
   Bump commons-codec:commons-codec from 1.17.0 to 1.17.1 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/304";>#304)
 https://github.com/dependabot";>@​dependabot
   Bump org.codehaus.mojo:mojo-parent from 82 to 84 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/301";>#301)
 https://github.com/dependabot";>@​dependabot
   Bump org.apache.maven.shared:maven-common-artifact-filters from 3.3.2 to 
3.4.0 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/300";>#300)
 https://github.com/dependabot";>@​dependabot
   Bump org.apache.maven.enforcer:enforcer-api from 3.4.1 to 3.5.0 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/299";>#299)
 https://github.com/dependabot";>@​dependabot
   Bump org.codehaus.mojo:mojo-parent from 80 to 82 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/298";>#298)
 https://github.com/dependabot";>@​dependabot
   Bump commons-codec:commons-codec from 1.16.1 to 1.17.0 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/296";>#296)
 https://github.com/dependabot";>@​dependabot
   
   👻 Maintenance
   
   Remove outdated FAQ site (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/309";>#309)
 https://github.com/slawekjaranowski";>@​slawekjaranowski
   Fix typo in site. (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/294";>#294)
 https://github.com/divyekapoor";>@​divyekapoor
   
   
   
   
   Commits
   
   https://github.com/mojohaus/extra-enforcer-rules/commit/be237e4a142a15e8d6667ee99b3a38e32301fe91";>be237e4
 [maven-release-plugin] prepare release 1.9.0
   https://github.com/mojohaus/extra-enforcer-rules/commit/5b9d941db9896c91e9454b9fa799473f5e2a2989";>5b9d941
 Bump org.codehaus.mojo:mojo-parent from 85 to 86 (https://redirect.github.com/mojohaus/extra-enforcer-rules/issues/307";>#307)
   https://github.com/mojohaus/extra-enforcer-rules/commit/3f2f6836d99e1f31d163414c18b31132ebd67778";>3f2f683
 Remove outdated FAQ site
   https://github.com/mojohaus/extra-enforcer-rules/commit/a5b2a003e0c3f3a95a2ee438f80ce3a6fa613afc";>a5b2a00
 Recognize JDK 24
   https://github.com/mojohaus/extra-enforcer-rules/commit/206cee384227b2938f72c94a2445185f0782e27d";>206cee3
 Bump org.codehaus.mojo:mojo-parent from 84 to 85
   https://github.com/mojohaus/extra-enforcer-rules/commit/d706b499525a45d526b2d27a8a4293034a7f915f";>d706b49
 Bump commons-codec:commons-codec from 1.17.0 to 1.17.1
   https://github.com/mojohaus/extra-enforcer-rules/commit/89f3a9a9f873f70c477ce26089d5ba665846bc2b";>89f3a9a
 Bump org.codehaus.mojo:mojo-parent from 82 to 84
   https://github.com/mojohaus/extra-enforcer-rules/commit/789af2c30ba2bba6d3068740f7fb28f77940cfc9";>789af2c
 Bump org.apache.maven.shared:maven-common-artifact-filters
   https://github.com/mojohaus/extra-enforcer-rules/commit/226130f2b7e1f93291f59338b46a8e6196258736";>226130f
 Bump org.apache.maven.enforcer:enforcer-api from 3.4.1 to 3.5.0
   https://github.com/mojohaus/extra-enforcer-rules/commit/fba70bd064b343cbc9b86414c983a69f2344ccbb";>fba70bd
 Bump org.codehaus.mojo:mojo-parent from 80 to 82
   Additional commits viewable in https://github.com/mojohaus/extra-enforcer-rules/compare/1.8.0...1.9.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.codehaus.mojo:extra-enforcer-rules&package-manager=maven&previous-version=1.8.0&new-version=1.9.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)
   [//]: # (d

Re: [PR] Bump org.codehaus.mojo:extra-enforcer-rules from 1.8.0 to 1.9.0 [creadur-whisker]

2024-09-23 Thread via GitHub


ottlinger merged PR #189:
URL: https://github.com/apache/creadur-whisker/pull/189


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-23 Thread via GitHub


ottlinger commented on PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#issuecomment-2368124955

   Thanks for all your work - would you mind adding a changelog entry for Ant?
   Apart from that minor things within the site need to be fixed. Thanks&&kudos!


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-23 Thread via GitHub


ottlinger commented on code in PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#discussion_r1771339751


##
src/site/site.xml:
##
@@ -61,6 +61,15 @@
   
   
   
+  https://github.com/apache/creadur-rat/blob/master/apache-rat-core/src/main/resources/org/apache/rat/default.xml";
 />

Review Comment:
   Pls use gitbox links to remain on ASF infra consitently.



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-23 Thread via GitHub


ottlinger commented on code in PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#discussion_r1771338606


##
src/site/apt/index.apt.vm:
##
@@ -96,8 +96,11 @@ Apache Rat™
 
 * Quick Start: Running Rat
 
-  There are three user interfaces for Rat: from the command line, from Ant, 
and from Maven.  All three of the interfaces

Review Comment:
   Shouldn't this information remain on the starting page of RAT?



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-383 autoupdate ant documentation (Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-23 Thread via GitHub


ottlinger commented on code in PR #317:
URL: https://github.com/apache/creadur-rat/pull/317#discussion_r1771321231


##
apache-rat-tasks/src/site/apt/examples/basic.apt.vm:
##
@@ -59,28 +59,25 @@ java -jar apache-rat-${project.version}.jar src
   The equivalent of
 
 +--+
-java -jar apache-rat-${project.version}.jar --addlicense
-  --copyright "Copyright 2008 Foo"
+java -jar apache-rat-${project.version}.jar --edit-license
+  --edit-copyright "Copyright 2008 Foo"
   /path/to/project
 +--+
 
   is
 
 ---
-
+
 
 
 ---
 
 * Create a styled HTML report
 
 ---
-
+

Review Comment:
   Shouldn't the general example not contain a custom XSLT? As a user that has 
to migrate after 0.17 is out I would not want to add my custom XSLT but would 
like to have the functionality as the format=styled before  WDYT?



-- 
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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump org.codehaus.mojo:extra-enforcer-rules from 1.8.0 to 1.9.0 [creadur-whisker]

2024-09-22 Thread via GitHub


dependabot[bot] opened a new pull request, #189:
URL: https://github.com/apache/creadur-whisker/pull/189

   Bumps 
[org.codehaus.mojo:extra-enforcer-rules](https://github.com/mojohaus/extra-enforcer-rules)
 from 1.8.0 to 1.9.0.
   
   Release notes
   Sourced from https://github.com/mojohaus/extra-enforcer-rules/releases";>org.codehaus.mojo:extra-enforcer-rules's
 releases.
   
   1.9.0
   
   🚀 New features and improvements
   
   Recognize JDK 24 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/308";>#308)
 https://github.com/wendigo";>@​wendigo
   Make parent level configurable for reference value in 
requirePropertyDiverges (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/295";>#295)
 https://github.com/piercemar";>@​piercemar
   
   📦 Dependency updates
   
   Bump org.codehaus.mojo:mojo-parent from 85 to 86 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/307";>#307)
 https://github.com/dependabot";>@​dependabot
   Bump org.codehaus.mojo:mojo-parent from 84 to 85 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/306";>#306)
 https://github.com/dependabot";>@​dependabot
   Bump commons-codec:commons-codec from 1.17.0 to 1.17.1 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/304";>#304)
 https://github.com/dependabot";>@​dependabot
   Bump org.codehaus.mojo:mojo-parent from 82 to 84 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/301";>#301)
 https://github.com/dependabot";>@​dependabot
   Bump org.apache.maven.shared:maven-common-artifact-filters from 3.3.2 to 
3.4.0 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/300";>#300)
 https://github.com/dependabot";>@​dependabot
   Bump org.apache.maven.enforcer:enforcer-api from 3.4.1 to 3.5.0 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/299";>#299)
 https://github.com/dependabot";>@​dependabot
   Bump org.codehaus.mojo:mojo-parent from 80 to 82 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/298";>#298)
 https://github.com/dependabot";>@​dependabot
   Bump commons-codec:commons-codec from 1.16.1 to 1.17.0 (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/296";>#296)
 https://github.com/dependabot";>@​dependabot
   
   👻 Maintenance
   
   Remove outdated FAQ site (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/309";>#309)
 https://github.com/slawekjaranowski";>@​slawekjaranowski
   Fix typo in site. (https://redirect.github.com/mojohaus/extra-enforcer-rules/pull/294";>#294)
 https://github.com/divyekapoor";>@​divyekapoor
   
   
   
   
   Commits
   
   https://github.com/mojohaus/extra-enforcer-rules/commit/be237e4a142a15e8d6667ee99b3a38e32301fe91";>be237e4
 [maven-release-plugin] prepare release 1.9.0
   https://github.com/mojohaus/extra-enforcer-rules/commit/5b9d941db9896c91e9454b9fa799473f5e2a2989";>5b9d941
 Bump org.codehaus.mojo:mojo-parent from 85 to 86 (https://redirect.github.com/mojohaus/extra-enforcer-rules/issues/307";>#307)
   https://github.com/mojohaus/extra-enforcer-rules/commit/3f2f6836d99e1f31d163414c18b31132ebd67778";>3f2f683
 Remove outdated FAQ site
   https://github.com/mojohaus/extra-enforcer-rules/commit/a5b2a003e0c3f3a95a2ee438f80ce3a6fa613afc";>a5b2a00
 Recognize JDK 24
   https://github.com/mojohaus/extra-enforcer-rules/commit/206cee384227b2938f72c94a2445185f0782e27d";>206cee3
 Bump org.codehaus.mojo:mojo-parent from 84 to 85
   https://github.com/mojohaus/extra-enforcer-rules/commit/d706b499525a45d526b2d27a8a4293034a7f915f";>d706b49
 Bump commons-codec:commons-codec from 1.17.0 to 1.17.1
   https://github.com/mojohaus/extra-enforcer-rules/commit/89f3a9a9f873f70c477ce26089d5ba665846bc2b";>89f3a9a
 Bump org.codehaus.mojo:mojo-parent from 82 to 84
   https://github.com/mojohaus/extra-enforcer-rules/commit/789af2c30ba2bba6d3068740f7fb28f77940cfc9";>789af2c
 Bump org.apache.maven.shared:maven-common-artifact-filters
   https://github.com/mojohaus/extra-enforcer-rules/commit/226130f2b7e1f93291f59338b46a8e6196258736";>226130f
 Bump org.apache.maven.enforcer:enforcer-api from 3.4.1 to 3.5.0
   https://github.com/mojohaus/extra-enforcer-rules/commit/fba70bd064b343cbc9b86414c983a69f2344ccbb";>fba70bd
 Bump org.codehaus.mojo:mojo-parent from 80 to 82
   Additional commits viewable in https://github.com/mojohaus/extra-enforcer-rules/compare/1.8.0...1.9.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.codehaus.mojo:extra-enforcer-rules&package-manager=maven&previous-version=1.8.0&new-version=1.9.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)
   [//]: # (dep

[PR] Bump org.apache.maven.plugins:maven-jxr-plugin from 3.4.0 to 3.5.0 [creadur-rat]

2024-09-22 Thread via GitHub


dependabot[bot] opened a new pull request, #330:
URL: https://github.com/apache/creadur-rat/pull/330

   Bumps 
[org.apache.maven.plugins:maven-jxr-plugin](https://github.com/apache/maven-jxr)
 from 3.4.0 to 3.5.0.
   
   Commits
   
   https://github.com/apache/maven-jxr/commit/35f311f5b0b2c868bcbeecea0f9484cf4f8dc92c";>35f311f
 [maven-release-plugin] prepare release jxr-3.5.0
   https://github.com/apache/maven-jxr/commit/c4b6a27bce797859212a39fa3a35510a63b36d0b";>c4b6a27
 [JXR-189] Dynamically calculate javadocLocation/testJavadocLocation
   https://github.com/apache/maven-jxr/commit/4744d81c9d97ba636700d4e5e6e36697047eeb2f";>4744d81
 [JXR-188] Upgrade to Doxia 2.0.0 Milestone Stack
   https://github.com/apache/maven-jxr/commit/2cd6a449cc4371efb1c0a5b2259d73fc4f128a83";>2cd6a44
 Bump org.apache.maven:maven-parent from 42 to 43
   https://github.com/apache/maven-jxr/commit/9f6ba6911a651287b22f6aef99133d16a690c397";>9f6ba69
 Bump org.apache.commons:commons-lang3 from 3.14.0 to 3.16.0
   https://github.com/apache/maven-jxr/commit/c010d1f1320a633e62b466b4a9aed9f803f92935";>c010d1f
 use new Reproducible Central badge endpoint
   https://github.com/apache/maven-jxr/commit/5754acfcb1c9d76350f4cbeaabd377a9d52cfc06";>5754acf
 Remove outdated invoker conditions
   https://github.com/apache/maven-jxr/commit/be752261fffa299b722b1bd8812039dac60bbcf6";>be75226
 [maven-release-plugin] prepare for next development iteration
   See full diff in https://github.com/apache/maven-jxr/compare/jxr-3.4.0...jxr-3.5.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-jxr-plugin&package-manager=maven&previous-version=3.4.0&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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump commons-io:commons-io from 2.16.1 to 2.17.0 [creadur-rat]

2024-09-22 Thread via GitHub


dependabot[bot] opened a new pull request, #331:
URL: https://github.com/apache/creadur-rat/pull/331

   Bumps commons-io:commons-io from 2.16.1 to 2.17.0.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-io:commons-io&package-manager=maven&previous-version=2.16.1&new-version=2.17.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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump org.apache.maven.plugins:maven-project-info-reports-plugin from 3.6.2 to 3.7.0 [creadur-rat]

2024-09-22 Thread via GitHub


dependabot[bot] opened a new pull request, #329:
URL: https://github.com/apache/creadur-rat/pull/329

   Bumps 
[org.apache.maven.plugins:maven-project-info-reports-plugin](https://github.com/apache/maven-project-info-reports-plugin)
 from 3.6.2 to 3.7.0.
   
   Commits
   
   https://github.com/apache/maven-project-info-reports-plugin/commit/377b7e1139982c63a7725601565a9b976abeee05";>377b7e1
 [maven-release-plugin] prepare release 
maven-project-info-reports-plugin-3.7.0
   https://github.com/apache/maven-project-info-reports-plugin/commit/f162bb792d4c5dad6967aa283d86736ae7aa4e8a";>f162bb7
 [MPIR-454] Upgrade to Doxia 2.0.0 Milestone Stack
   https://github.com/apache/maven-project-info-reports-plugin/commit/78e0196c153d141ceee3dbbf7ce930b66539a737";>78e0196
 [MPIR-467] Upgrade to Parent 43
   https://github.com/apache/maven-project-info-reports-plugin/commit/8813feae4b66a70d133c31f0961c0a8ca2e371b1";>8813fea
 [maven-release-plugin] prepare for next development iteration
   See full diff in https://github.com/apache/maven-project-info-reports-plugin/compare/maven-project-info-reports-plugin-3.6.2...maven-project-info-reports-plugin-3.7.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-project-info-reports-plugin&package-manager=maven&previous-version=3.6.2&new-version=3.7.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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.3.1 to 3.5.0 [creadur-rat]

2024-09-22 Thread via GitHub


dependabot[bot] opened a new pull request, #332:
URL: https://github.com/apache/creadur-rat/pull/332

   Bumps 
[org.apache.maven.plugins:maven-failsafe-plugin](https://github.com/apache/maven-surefire)
 from 3.3.1 to 3.5.0.
   
   Release notes
   Sourced from https://github.com/apache/maven-surefire/releases";>org.apache.maven.plugins:maven-failsafe-plugin's
 releases.
   
   3.5.0
   
   
   
   
   What's Changed
   
   [SUREFIRE-2256] Upgrade to Parent 43 by https://github.com/michael-o";>@​michael-o in https://redirect.github.com/apache/maven-surefire/pull/770";>apache/maven-surefire#770
   Bump org.apache.commons:commons-compress from 1.27.0 to 1.27.1 by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/apache/maven-surefire/pull/771";>apache/maven-surefire#771
   [SUREFIRE-2228] Upgrade to Doxia 2.0.0 Milestone Stack by https://github.com/michael-o";>@​michael-o in https://redirect.github.com/apache/maven-surefire/pull/629";>apache/maven-surefire#629
   
   Full Changelog: https://github.com/apache/maven-surefire/compare/surefire-3.4.0...surefire-3.5.0";>https://github.com/apache/maven-surefire/compare/surefire-3.4.0...surefire-3.5.0
   3.4.0
   
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/apache/maven-surefire/commit/c78365f5a229155e7d0cfad2913445fc01d7a959";>c78365f
 [maven-release-plugin] prepare release surefire-3.5.0
   https://github.com/apache/maven-surefire/commit/05e4681f38f53c2a54b7671291ca02dc63586a98";>05e4681
 [SUREFIRE-2227] Dynamically calculate xrefTestLocation
   https://github.com/apache/maven-surefire/commit/f1a419a1457e5a83f9deb07a700a1376487f72ed";>f1a419a
 [SUREFIRE-2228] Upgrade to Doxia 2.0.0 Milestone Stack
   https://github.com/apache/maven-surefire/commit/5e14d4fb4ddf6e4ce4af0f6632398c7ba8df2325";>5e14d4f
 [SUREFIRE-2161] Align Mojo class names and output names
   https://github.com/apache/maven-surefire/commit/c0784ab18a9b3830812be4cf6bc147f5c5285005";>c0784ab
 Bump org.apache.commons:commons-compress from 1.27.0 to 1.27.1
   https://github.com/apache/maven-surefire/commit/79ea7178aaf73190f4aead3d38d4b8276d7dd1b7";>79ea717
 [SUREFIRE-2256] Upgrade to Parent 43
   https://github.com/apache/maven-surefire/commit/4648b47403fb9a43025892b22f361f2bef5f057c";>4648b47
 add Reproducible Builds badge
   https://github.com/apache/maven-surefire/commit/f64c1b3148626ece80726b74208c4b62641a40e3";>f64c1b3
 [maven-release-plugin] prepare for next development iteration
   https://github.com/apache/maven-surefire/commit/3ae062d690a07f4cfeb9fe3e53fc28cb1b8d6cff";>3ae062d
 [maven-release-plugin] prepare release surefire-3.4.0
   https://github.com/apache/maven-surefire/commit/f0de8c0e0fbf2efcc485b82f989f9537d212d71e";>f0de8c0
 Bump org.htmlunit:htmlunit from 4.3.0 to 4.4.0
   Additional commits viewable in https://github.com/apache/maven-surefire/compare/surefire-3.3.1...surefire-3.5.0";>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.3.1&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 Ap

Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-22 Thread via GitHub


Claudenw merged PR #301:
URL: https://github.com/apache/creadur-rat/pull/301


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-22 Thread via GitHub


ottlinger commented on PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#issuecomment-2366942356

   @Claudenw if you are fine with my changes feel free to merge and go ahead.


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-22 Thread via GitHub


ottlinger commented on code in PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#discussion_r1770624845


##
src/site/apt/index.apt.vm:
##
@@ -99,10 +99,6 @@ Apache Rat™
   There are three user interfaces for Rat: from the command line, from Ant, 
and from Maven.  All three of the interfaces
   support standard options as noted in the list below.
 
-+--+
-

Review Comment:
   @Claudenw is there an inclusion of a txt file missing here?



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.8.0 to 3.10.0 [creadur-rat]

2024-09-21 Thread via GitHub


ottlinger merged PR #324:
URL: https://github.com/apache/creadur-rat/pull/324


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump org.apache.maven.plugins:maven-surefire-plugin from 3.3.1 to 3.5.0 [creadur-rat]

2024-09-21 Thread via GitHub


ottlinger merged PR #325:
URL: https://github.com/apache/creadur-rat/pull/325


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump org.apache.maven.plugins:maven-pmd-plugin from 3.24.0 to 3.25.0 [creadur-rat]

2024-09-21 Thread via GitHub


ottlinger merged PR #326:
URL: https://github.com/apache/creadur-rat/pull/326


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump com.gradle:develocity-maven-extension from 1.21.6 to 1.22.1 [creadur-rat]

2024-09-21 Thread via GitHub


ottlinger merged PR #327:
URL: https://github.com/apache/creadur-rat/pull/327


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-21 Thread via GitHub


Claudenw commented on PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#issuecomment-2365223014

   @ottlinger 
   
   Yes, the current version uses commons-cli 1.8.0, v1.9.0 changes the help 
generation in ways that broke our output.  CLI v1.10.0 should fix it but I am 
still working on it.  I was hoping to get a first cut done this weekend but 
that it not looking good right now.
   
   


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-20 Thread via GitHub


ottlinger commented on PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#issuecomment-2364659757

   @Claudenw did you push all changes? The current version only uses v1.8.0:
   
   ```
   ➜  creadur-rat git:(RAT-384_write_XSD) ./mvnw dependency:tree
   .
   [INFO] 
   [INFO] --< org.apache.rat:apache-rat-tools 
>---
   [INFO] Building Apache Creadur Rat::Tools 0.17-SNAPSHOT   
[3/6]
   [INFO]   from apache-rat-tools/pom.xml
   [INFO] [ jar 
]-
   [INFO] 
   [INFO] --- dependency:3.8.0:tree (default-cli) @ apache-rat-tools ---
   [INFO] org.apache.rat:apache-rat-tools:jar:0.17-SNAPSHOT
   [INFO] +- org.apache.rat:apache-rat-core:jar:0.17-SNAPSHOT:compile
   [INFO] |  +- org.apache.commons:commons-collections4:jar:4.4:compile
   [INFO] |  +- org.apache.commons:commons-lang3:jar:3.17.0:compile
   [INFO] |  +- commons-io:commons-io:jar:2.16.1:compile
   [INFO] |  +- org.apache.commons:commons-text:jar:1.12.0:compile
   [INFO] |  +- org.junit.jupiter:junit-jupiter-api:jar:5.11.0:compile
   [INFO] |  |  +- org.opentest4j:opentest4j:jar:1.3.0:compile
   [INFO] |  |  +- org.junit.platform:junit-platform-commons:jar:1.11.0:compile
   [INFO] |  |  \- org.apiguardian:apiguardian-api:jar:1.1.2:compile
   [INFO] |  +- org.junit.vintage:junit-vintage-engine:jar:5.11.0:compile
   [INFO] |  |  +- org.junit.platform:junit-platform-engine:jar:1.11.0:compile
   [INFO] |  |  \- junit:junit:jar:4.13.2:compile
   [INFO] |  | \- org.hamcrest:hamcrest-core:jar:1.3:compile
   [INFO] |  +- org.junit.jupiter:junit-jupiter-params:jar:5.11.0:compile
   [INFO] |  \- org.apache.tika:tika-core:jar:2.9.2:compile
   [INFO] | \- org.slf4j:slf4j-api:jar:2.0.10:compile
   [INFO] +- org.apache.rat:apache-rat-core:test-jar:tests:0.17-SNAPSHOT:test
   [INFO] +- commons-cli:commons-cli:jar:1.8.0:compile
   [INFO] +- org.apache.commons:commons-csv:jar:1.11.0:compile
   [INFO] |  \- commons-codec:commons-codec:jar:1.16.1:compile
   [INFO] \- org.apache.commons:commons-compress:jar:1.27.1:compile
   [INFO] 
   
   ```


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-20 Thread via GitHub


Claudenw commented on PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#issuecomment-2363443767

   @ottlinger if you approve of this we can merge it now.
   
   The CLI update will have to wait for commons-cli 1.10.0


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] Bump commons-io:commons-io from 2.16.1 to 2.17.0 [creadur-whisker]

2024-09-19 Thread via GitHub


ottlinger merged PR #188:
URL: https://github.com/apache/creadur-whisker/pull/188


-- 
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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump commons-io:commons-io from 2.16.1 to 2.17.0 [creadur-whisker]

2024-09-18 Thread via GitHub


dependabot[bot] opened a new pull request, #188:
URL: https://github.com/apache/creadur-whisker/pull/188

   Bumps commons-io:commons-io from 2.16.1 to 2.17.0.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-io:commons-io&package-manager=maven&previous-version=2.16.1&new-version=2.17.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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-17 Thread via GitHub


Claudenw commented on PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#issuecomment-2356681374

   This change has exhibited a weird error.  It seem like it is pulling in 
commons-cli 1.9.0 while everything in the codebase seems to point to 
commons-cli 1.8.0


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-17 Thread via GitHub


Claudenw commented on code in PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#discussion_r1763486210


##
apache-rat-core/src/main/java/org/apache/rat/help/AbstractHelp.java:
##
@@ -78,4 +80,98 @@ public static String createPadding(final int len) {
 public static String header(final String txt) {
 return String.format("%n== %s ==%n", 
WordUtils.capitalizeFully(txt));
 }
+
+public class RatHelpFormatter extends HelpFormatter {
+
+RatHelpFormatter() {
+super();
+this.optionComparator = OptionCollection.optionComparator;
+this.setWidth(HELP_WIDTH);
+}
+
+public void printHelp(final PrintWriter pw, final String 
cmdLineSyntax, final String header, final Options options, final String footer) 
{
+if (StringUtils.isEmpty(cmdLineSyntax)) {
+throw new IllegalArgumentException("cmdLineSyntax not 
provided");
+}
+
+helpFormatter.printUsage(pw, HELP_WIDTH, cmdLineSyntax);
+
+if (header != null && !header.isEmpty()) {
+helpFormatter.printWrapped(pw, HELP_WIDTH, header);
+}
+printOptions(pw, HELP_WIDTH, options, 
helpFormatter.getLeftPadding(), helpFormatter.getDescPadding());
+if (footer != null && !footer.isEmpty()) {
+helpFormatter.printWrapped(pw, helpFormatter.getWidth(), 
footer);
+}
+}
+
+
+protected StringBuffer renderOptions(final StringBuffer sb, final int 
width, final Options options, final int leftPad, final int descPad) {

Review Comment:
   It would be except that we have to call renderWrappedText() on line 169 and 
that is a method from the base class in the commons cli library.



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-17 Thread via GitHub


Claudenw commented on code in PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#discussion_r1763477646


##
apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/impl/base/XmlWriter.java:
##
@@ -627,6 +627,39 @@ public IXmlWriter closeElement() throws IOException {
 return this;
 }
 
+/**
+ * Closes back to and including the last instance of the specified element 
nema.
+ * @param name The name of the element to close.
+ * @return this object
+ * @throws OperationNotAllowedException if called before any call to
+ * {@link #openElement} or after the first element has been closed
+ */
+@Override
+public IXmlWriter closeElement(CharSequence name) throws IOException {

Review Comment:
   added Object.requireNonNull and updated javadoc to say nulls not allowed.



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-17 Thread via GitHub


Claudenw commented on code in PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#discussion_r1763472701


##
apache-rat-tools/src/main/java/org/apache/rat/tools/xsd/XsdWriter.java:
##
@@ -0,0 +1,84 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.rat.tools.xsd;
+
+import org.apache.rat.ReportConfiguration;
+import org.apache.rat.report.xml.writer.impl.base.XmlWriter;
+
+import java.io.IOException;
+import java.io.OutputStreamWriter;
+import java.io.Writer;
+
+public class XsdWriter {
+private final XmlWriter writer;
+
+public enum Type {
+ELEMENT("xs:element"), ATTRIBUTE("xs:attribute"),
+COMPLEX("xs:complexType"), SEQUENCE("xs:sequence"), 
SIMPLE("xs:simpleContent"),
+EXTENSION("xs:extension"), CHOICE("xs:choice"), 
COMPLEX_CONTENT("xs:complexContent");
+private String elementName;
+
+Type(String name) {
+elementName = name;
+}
+}
+
+public XsdWriter(Writer writer) {
+this.writer = new XmlWriter(writer);
+}
+
+public XsdWriter init() throws IOException {
+writer.startDocument()
+.openElement("xs:schema")
+.attribute("attributeFormDefault", "unqualified")
+.attribute("xmlns:xs", "http://www.w3.org/2001/XMLSchema";);
+return this;
+}
+
+public void fini() throws IOException {

Review Comment:
   yes



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-17 Thread via GitHub


Claudenw commented on code in PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#discussion_r1763469227


##
apache-rat-tools/src/test/java/org/apache/rat/tools/NamingTest.java:
##
@@ -181,10 +181,4 @@ private void assertContains(String expected, List 
actual) {
 private void assertNotContains(String expected, List actual) {
 assertFalse(actual.contains(expected), () -> "Contains "+expected);
 }
-
-@Test

Review Comment:
   Missed it in a merge somehow.



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-17 Thread via GitHub


Claudenw commented on code in PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#discussion_r1763457079


##
src/site/apt/license_def.apt.vm:
##
@@ -29,7 +29,9 @@ How to define licenses in Apache Rat
  scope of this document.  In this document we will address how to define 
licenses in the default XML format.
  
  The XML document has a root node named "rat-config" which comprises 4 major 
sections: "Families", 
- "Licenses", "Approved" and "Matchers".
+ "Licenses", "Approved" and "Matchers".  There is an 
{{{./apache-rat/rat.xsd}}XSD} that can be used to validate

Review Comment:
   just a formatter setting.  I think I had a problem at one point and just 
ended up using 2 spaces.



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: Fix for index missing text [creadur-rat]

2024-09-17 Thread via GitHub


Claudenw closed pull request #318: RAT-384: Fix for index missing text
URL: https://github.com/apache/creadur-rat/pull/318


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: Fix for index missing text [creadur-rat]

2024-09-17 Thread via GitHub


Claudenw commented on PR #318:
URL: https://github.com/apache/creadur-rat/pull/318#issuecomment-2356245831

   Opened in error


-- 
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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump org.apache.maven.plugins:maven-site-plugin from 3.12.1 to 3.20.0 [creadur-rat]

2024-09-16 Thread via GitHub


dependabot[bot] opened a new pull request, #328:
URL: https://github.com/apache/creadur-rat/pull/328

   Bumps 
[org.apache.maven.plugins:maven-site-plugin](https://github.com/apache/maven-site-plugin)
 from 3.12.1 to 3.20.0.
   
   Release notes
   Sourced from https://github.com/apache/maven-site-plugin/releases";>org.apache.maven.plugins:maven-site-plugin's
 releases.
   
   maven-site-plugin-3.20.0
   Full Changelog: https://github.com/apache/maven-site-plugin/compare/maven-site-plugin-3.12.1...maven-site-plugin-3.20.0";>https://github.com/apache/maven-site-plugin/compare/maven-site-plugin-3.12.1...maven-site-plugin-3.20.0
   
   
   
   Commits
   
   https://github.com/apache/maven-site-plugin/commit/fd657157b5769f10be6617faaa5b645a8524bfb0";>fd65715
 [maven-release-plugin] prepare release maven-site-plugin-3.20.0
   https://github.com/apache/maven-site-plugin/commit/be35f64eefbb83cec72e5edb75baa9878738ac01";>be35f64
 [MSITE-945] Remove dependency on Commons IO
   https://github.com/apache/maven-site-plugin/commit/6fc5d171b7f7e539c7107fc89612c949be5e813e";>6fc5d17
 [MSITE-945] More modern temporary file handling (https://redirect.github.com/apache/maven-site-plugin/issues/203";>#203)
   https://github.com/apache/maven-site-plugin/commit/eb0b0f6e03e95ab2b2d7f0eff0a2b2e45e1b77f3";>eb0b0f6
 Remove debugging strings from test output (https://redirect.github.com/apache/maven-site-plugin/issues/204";>#204)
   https://github.com/apache/maven-site-plugin/commit/54faaa8948d40b2915b0ebb8a3c242d42af5738f";>54faaa8
 Earlier detection of mkdirs failure (https://redirect.github.com/apache/maven-site-plugin/issues/201";>#201)
   https://github.com/apache/maven-site-plugin/commit/73b57d3841223beff5188357e5563981ff3e0121";>73b57d3
 Replace deprecated methods (https://redirect.github.com/apache/maven-site-plugin/issues/198";>#198)
   https://github.com/apache/maven-site-plugin/commit/cf5c5045325a9596f6eb4689b245da32cee8e568";>cf5c504
 Add version to mrm-maven-plugin
   https://github.com/apache/maven-site-plugin/commit/688714c6e42434d2c3d70c9adca5709ba236b277";>688714c
 Use charset in test (https://redirect.github.com/apache/maven-site-plugin/issues/199";>#199)
   https://github.com/apache/maven-site-plugin/commit/adc67e182048eeae17c87a73d411a52a686934dd";>adc67e1
 Use try with resources to avoid deprecated class (https://redirect.github.com/apache/maven-site-plugin/issues/200";>#200)
   https://github.com/apache/maven-site-plugin/commit/2e867c67851522a76a0db0bb98a6b3db909593b4";>2e867c6
 Update history
   Additional commits viewable in https://github.com/apache/maven-site-plugin/compare/maven-site-plugin-3.12.1...maven-site-plugin-3.20.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-site-plugin&package-manager=maven&previous-version=3.12.1&new-version=3.20.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: dev-unsubscr...@creadur.apache.org

For queries about this service, please contact Infr

[PR] Bump com.gradle:develocity-maven-extension from 1.21.6 to 1.22.1 [creadur-rat]

2024-09-16 Thread via GitHub


dependabot[bot] opened a new pull request, #327:
URL: https://github.com/apache/creadur-rat/pull/327

   Bumps com.gradle:develocity-maven-extension from 1.21.6 to 1.22.1.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.gradle:develocity-maven-extension&package-manager=maven&previous-version=1.21.6&new-version=1.22.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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump org.apache.maven.plugins:maven-pmd-plugin from 3.24.0 to 3.25.0 [creadur-rat]

2024-09-16 Thread via GitHub


dependabot[bot] opened a new pull request, #326:
URL: https://github.com/apache/creadur-rat/pull/326

   Bumps 
[org.apache.maven.plugins:maven-pmd-plugin](https://github.com/apache/maven-pmd-plugin)
 from 3.24.0 to 3.25.0.
   
   Release notes
   Sourced from https://github.com/apache/maven-pmd-plugin/releases";>org.apache.maven.plugins:maven-pmd-plugin's
 releases.
   
   3.25.0
   🚀 New features and improvements
   
   https://issues.apache.org/jira/browse/MPMD-390";>MPMD-390 - 
Dynamically calculate xrefLocation/xrefTestLocation (https://redirect.github.com/apache/maven-pmd-plugin/pull/126";>#126) 
https://github.com/michael-o";>@​michael-o
   
   🐛 Bug Fixes
   
   https://issues.apache.org/jira/browse/MPMD-368";>MPMD-368 - 
Parameter 'localRepository' is deprecated
   
   👻 Maintenance
   
   https://issues.apache.org/jira/browse/MPMD-398";>MPMD-398 - 
Refresh download page (https://redirect.github.com/apache/maven-pmd-plugin/pull/165";>#165) 
https://github.com/FredrikAnderson";>@​FredrikAnderson
   
   📝 Documentation updates
   
   (doc) Update release notes for 3.23.0 and 3.24.0 (https://redirect.github.com/apache/maven-pmd-plugin/pull/161";>#161) 
https://github.com/adangel";>@​adangel
   
   📦 Dependency updates
   
   https://issues.apache.org/jira/browse/MPMD-389";>MPMD-389 - 
Upgrade to Doxia 2.0.0 Milestone Stack (https://redirect.github.com/apache/maven-pmd-plugin/pull/126";>#126) 
https://github.com/michael-o";>@​michael-o
   https://issues.apache.org/jira/browse/MPMD-401";>MPMD-401 - 
Upgrade to Parent 43 (https://redirect.github.com/apache/maven-pmd-plugin/pull/159";>#159) 
https://github.com/dependabot";>@​dependabot
   Bump org.apache.commons:commons-lang3 from 3.15.0 to 3.16.0 (https://redirect.github.com/apache/maven-pmd-plugin/pull/164";>#164) 
https://github.com/dependabot";>@​dependabot
   Bump org.apache.commons:commons-lang3 from 3.14.0 to 3.15.0 (https://redirect.github.com/apache/maven-pmd-plugin/pull/163";>#163) 
https://github.com/dependabot";>@​dependabot
   
   
   
   
   Commits
   
   https://github.com/apache/maven-pmd-plugin/commit/3e1c8a86cf864570239cc2e0691749f3336288a8";>3e1c8a8
 [maven-release-plugin] prepare release maven-pmd-plugin-3.25.0
   https://github.com/apache/maven-pmd-plugin/commit/249824077aef91372a323f69bb3b060ec44679ce";>2498240
 [MPMD-390] Dynamically calculate xrefLocation/xrefTestLocation
   https://github.com/apache/maven-pmd-plugin/commit/c31b29af9835652db9ab0b9e919c8e14bc4efabf";>c31b29a
 [MPMD-389] Upgrade to Doxia 2.0.0 Milestone Stack
   https://github.com/apache/maven-pmd-plugin/commit/4d7c08047ed0f0b55a2f6eb4a4ce12f3a7da2b79";>4d7c080
 Bump org.apache.maven.plugins:maven-plugins from 42 to 43
   https://github.com/apache/maven-pmd-plugin/commit/1520c02825fda987ff615568b7321e98f528dd7f";>1520c02
 Bump org.apache.commons:commons-lang3 from 3.15.0 to 3.16.0
   https://github.com/apache/maven-pmd-plugin/commit/7c5f2fee3ad6d6e3300f0e454a73e9baea0441d3";>7c5f2fe
 use new Reproducible Central badge endpoint
   https://github.com/apache/maven-pmd-plugin/commit/52c4a145aac1e552e3be4648329fda0ba4408dc0";>52c4a14
 [MPMD-398] Refresh download page
   https://github.com/apache/maven-pmd-plugin/commit/a49c7c6da45a38feb11299c91a6cc7fab5699cfc";>a49c7c6
 Bump org.apache.commons:commons-lang3 from 3.14.0 to 3.15.0
   https://github.com/apache/maven-pmd-plugin/commit/8a762630199ca41ad06a2d312f85e16f10816d4a";>8a76263
 Minor copy edit (https://redirect.github.com/apache/maven-pmd-plugin/issues/162";>#162)
   https://github.com/apache/maven-pmd-plugin/commit/f4ca73947a5177fb1f378e8991f2e6f056d6b797";>f4ca739
 [MPMD-400] (doc) Fix doc URL for PMD 7.3.0 (https://redirect.github.com/apache/maven-pmd-plugin/issues/160";>#160)
   Additional commits viewable in https://github.com/apache/maven-pmd-plugin/compare/maven-pmd-plugin-3.24.0...maven-pmd-plugin-3.25.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-pmd-plugin&package-manager=maven&previous-version=3.24.0&new-version=3.25.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` 

[PR] Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.8.0 to 3.10.0 [creadur-rat]

2024-09-16 Thread via GitHub


dependabot[bot] opened a new pull request, #324:
URL: https://github.com/apache/creadur-rat/pull/324

   Bumps 
[org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin)
 from 3.8.0 to 3.10.0.
   
   Commits
   
   https://github.com/apache/maven-javadoc-plugin/commit/487e47995424a5090dad5702b92fecaf8893a294";>487e479
 [maven-release-plugin] prepare release maven-javadoc-plugin-3.10.0
   https://github.com/apache/maven-javadoc-plugin/commit/9638a6a76c6db53c3bf8ffbd5cec7318b0e25303";>9638a6a
 [MJAVADOC-785] Align plugin implementation with AbstractMavenReport 
(maven-re...
   https://github.com/apache/maven-javadoc-plugin/commit/9d339255f160d259a64189d31ab4325f1d3fae4e";>9d33925
 [MJAVADOC-784] Upgrade to Doxia 2.0.0 Milestone Stack
   https://github.com/apache/maven-javadoc-plugin/commit/a11b921429c884c7e9d1aa03092b2c7146508db8";>a11b921
 [MJAVADOC-809] Align Mojo class names
   https://github.com/apache/maven-javadoc-plugin/commit/7c4b467e67b482fc709648b283e7ed2d3b50d042";>7c4b467
 Bump org.apache.maven.plugins:maven-plugins from 42 to 43
   https://github.com/apache/maven-javadoc-plugin/commit/636442b317e5506ca6687375c1d86c7395152f93";>636442b
 Improve ITs
   https://github.com/apache/maven-javadoc-plugin/commit/dbca15ac6c523c6eaa973ef5d733c4a5594c23ba";>dbca15a
 Bump org.hamcrest:hamcrest-core from 2.2 to 3.0
   https://github.com/apache/maven-javadoc-plugin/commit/d02bb88d7a2849bdd39dfdf7a6098859145f42d0";>d02bb88
 Bump org.apache.commons:commons-lang3 from 3.15.0 to 3.16.0
   https://github.com/apache/maven-javadoc-plugin/commit/0a850a16589ff0e1e8379fe841159d04e686acfb";>0a850a1
 [MJAVADOC-807] Simplify IT for MJAVADOC-498
   https://github.com/apache/maven-javadoc-plugin/commit/43e901fc4b45c0fe868825f49f56866937210646";>43e901f
 Improve URL handling
   Additional commits viewable in https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.8.0...maven-javadoc-plugin-3.10.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-javadoc-plugin&package-manager=maven&previous-version=3.8.0&new-version=3.10.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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump org.apache.maven.plugins:maven-surefire-plugin from 3.3.1 to 3.5.0 [creadur-rat]

2024-09-16 Thread via GitHub


dependabot[bot] opened a new pull request, #325:
URL: https://github.com/apache/creadur-rat/pull/325

   Bumps 
[org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire)
 from 3.3.1 to 3.5.0.
   
   Commits
   
   https://github.com/apache/maven-surefire/commit/c78365f5a229155e7d0cfad2913445fc01d7a959";>c78365f
 [maven-release-plugin] prepare release surefire-3.5.0
   https://github.com/apache/maven-surefire/commit/05e4681f38f53c2a54b7671291ca02dc63586a98";>05e4681
 [SUREFIRE-2227] Dynamically calculate xrefTestLocation
   https://github.com/apache/maven-surefire/commit/f1a419a1457e5a83f9deb07a700a1376487f72ed";>f1a419a
 [SUREFIRE-2228] Upgrade to Doxia 2.0.0 Milestone Stack
   https://github.com/apache/maven-surefire/commit/5e14d4fb4ddf6e4ce4af0f6632398c7ba8df2325";>5e14d4f
 [SUREFIRE-2161] Align Mojo class names and output names
   https://github.com/apache/maven-surefire/commit/c0784ab18a9b3830812be4cf6bc147f5c5285005";>c0784ab
 Bump org.apache.commons:commons-compress from 1.27.0 to 1.27.1
   https://github.com/apache/maven-surefire/commit/79ea7178aaf73190f4aead3d38d4b8276d7dd1b7";>79ea717
 [SUREFIRE-2256] Upgrade to Parent 43
   https://github.com/apache/maven-surefire/commit/4648b47403fb9a43025892b22f361f2bef5f057c";>4648b47
 add Reproducible Builds badge
   https://github.com/apache/maven-surefire/commit/f64c1b3148626ece80726b74208c4b62641a40e3";>f64c1b3
 [maven-release-plugin] prepare for next development iteration
   https://github.com/apache/maven-surefire/commit/3ae062d690a07f4cfeb9fe3e53fc28cb1b8d6cff";>3ae062d
 [maven-release-plugin] prepare release surefire-3.4.0
   https://github.com/apache/maven-surefire/commit/f0de8c0e0fbf2efcc485b82f989f9537d212d71e";>f0de8c0
 Bump org.htmlunit:htmlunit from 4.3.0 to 4.4.0
   Additional commits viewable in https://github.com/apache/maven-surefire/compare/surefire-3.3.1...surefire-3.5.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-surefire-plugin&package-manager=maven&previous-version=3.3.1&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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump org.apache.maven.plugins:maven-invoker-plugin from 3.7.0 to 3.8.0 [creadur-rat]

2024-09-16 Thread via GitHub


ottlinger merged PR #323:
URL: https://github.com/apache/creadur-rat/pull/323


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.2 to 4.8.6.3 [creadur-rat]

2024-09-16 Thread via GitHub


ottlinger merged PR #322:
URL: https://github.com/apache/creadur-rat/pull/322


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump org.junit:junit-bom from 5.10.3 to 5.11.0 [creadur-rat]

2024-09-16 Thread via GitHub


ottlinger merged PR #321:
URL: https://github.com/apache/creadur-rat/pull/321


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump org.apache.maven.plugins:maven-checkstyle-plugin from 3.4.0 to 3.5.0 [creadur-rat]

2024-09-16 Thread via GitHub


ottlinger merged PR #320:
URL: https://github.com/apache/creadur-rat/pull/320


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump commons-cli:commons-cli from 1.8.0 to 1.9.0 [creadur-rat]

2024-09-16 Thread via GitHub


ottlinger merged PR #319:
URL: https://github.com/apache/creadur-rat/pull/319


-- 
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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.2 to 4.8.6.3 [creadur-rat]

2024-09-15 Thread via GitHub


dependabot[bot] opened a new pull request, #322:
URL: https://github.com/apache/creadur-rat/pull/322

   Bumps 
[com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin)
 from 4.8.6.2 to 4.8.6.3.
   
   Release notes
   Sourced from https://github.com/spotbugs/spotbugs-maven-plugin/releases";>com.github.spotbugs:spotbugs-maven-plugin's
 releases.
   
   Spotbugs Maven Plugin 4.8.6.3
   
   Ability to disable logs in quite mode (spotbugs.quiet) https://redirect.github.com/spotbugs/spotbugs-maven-plugin/issues/842";>#842
   Fix output directory per https://redirect.github.com/spotbugs/spotbugs-maven-plugin/issues/807";>#807
   Update plugins / dependencies
   Fix tag used to build spotbugs during GHA
   Use inject annotation from jsr330 instead of deprecated component 
annotation
   
   Build
   
   Remove old overrides from pom as addressed
   Cleanup javadocs
   Remove snapshot from javadocs at 2.1 as non existent
   Order attribute order of annotations
   Use log commonly throughout (newer coded used getLog in one place)
   Sort imports
   Add opens for java.lang and java.util for site build as needed on newer 
jdks
   Correct GHA for site distribution
   Delete duplicate codeql github action
   Speed up github actions
   
   
   
   
   Commits
   
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/4d122f59709a13234491915a252d804ae4e8c550";>4d122f5
 [maven-release-plugin] prepare release spotbugs-maven-plugin-4.8.6.3
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/08e4e4997b5f42a1a3668e6b24e20629b6845c9d";>08e4e49
 [mvn] Move deprecated component to jsr330 inject
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/62edad6f704aa2dbb3d263f7e5dbc4acb001e1a6";>62edad6
 [pom] Set version to 4.8.6.3 snapshot
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/ec0c400c4a7f5710e0192c7ac52a2ff6bc7ff86d";>ec0c400
 [pom] Bump surefire to 3.5.0
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/26cfa3810677945fae857015900f702d5bd0a41a";>26cfa38
 Merge pull request https://redirect.github.com/spotbugs/spotbugs-maven-plugin/issues/878";>#878
 from spotbugs/renovate/javaparserversion
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/72a83d4f4eeba42baebf5f3ff07391eb88f1b6fd";>72a83d4
 Update dependency com.github.javaparser:javaparser-core to v3.26.2
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/494c61eb1308bbf79a5ccd92d8eb39e23bdfda2c";>494c61e
 Merge pull request https://redirect.github.com/spotbugs/spotbugs-maven-plugin/issues/877";>#877
 from hazendaz/master
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/2e0118511499529b8248f3aa2593d8cd37eabf23";>2e01185
 [GHA] Cleanup duplicate running in integration tests
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/c8a6f4e02487e3a255e7630eb2d6f7c82140f45f";>c8a6f4e
 Merge pull request https://redirect.github.com/spotbugs/spotbugs-maven-plugin/issues/876";>#876
 from hazendaz/master
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/296a9a9021d504440e19f15ab98e28bc2f95f7e1";>296a9a9
 [GHA] Remove extra clean option as not needed
   Additional commits viewable in https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.8.6.2...spotbugs-maven-plugin-4.8.6.3";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.github.spotbugs:spotbugs-maven-plugin&package-manager=maven&previous-version=4.8.6.2&new-version=4.8.6.3)](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)
   - `@depend

[PR] Bump org.apache.maven.plugins:maven-checkstyle-plugin from 3.4.0 to 3.5.0 [creadur-rat]

2024-09-15 Thread via GitHub


dependabot[bot] opened a new pull request, #320:
URL: https://github.com/apache/creadur-rat/pull/320

   Bumps 
[org.apache.maven.plugins:maven-checkstyle-plugin](https://github.com/apache/maven-checkstyle-plugin)
 from 3.4.0 to 3.5.0.
   
   Commits
   
   https://github.com/apache/maven-checkstyle-plugin/commit/868abc95ea488a56f92a4610bdfd5d25c471e0de";>868abc9
 [maven-release-plugin] prepare release maven-checkstyle-plugin-3.5.0
   https://github.com/apache/maven-checkstyle-plugin/commit/9043f8a96ee5f3ab9971ecae399fce4da6a8ce2e";>9043f8a
 [MCHECKSTYLE-446] Dynamically calculate xrefLocation/xrefTestLocation
   https://github.com/apache/maven-checkstyle-plugin/commit/0e7bd00e106ea76d9ffaadf1256a95d463bf60e3";>0e7bd00
 [MCHECKSTYLE-445] Upgrade to Doxia 2.0.0 Milestone Stack
   https://github.com/apache/maven-checkstyle-plugin/commit/b92666d0b0dc3dfc4975be701e2f104ed6e96fb0";>b92666d
 Bump org.apache.maven.plugins:maven-plugins from 42 to 43
   https://github.com/apache/maven-checkstyle-plugin/commit/3699112ff3d962d7384172624a83ffcfcb8bc93e";>3699112
 use new Reproducible Central badge endpoint
   https://github.com/apache/maven-checkstyle-plugin/commit/d1076a352f03bd8e5065d36a15f66dbedd6235b5";>d1076a3
 Bump org.apache.commons:commons-lang3 from 3.15.0 to 3.16.0
   https://github.com/apache/maven-checkstyle-plugin/commit/b5a43002fffb5e0b44312cdd9a39f4305f705a50";>b5a4300
 Bump org.apache.commons:commons-lang3 from 3.14.0 to 3.15.0
   https://github.com/apache/maven-checkstyle-plugin/commit/ccb9d9fcea8afdbe2a57463258c0bcf4ee92e9f8";>ccb9d9f
 Directory, not folder
   https://github.com/apache/maven-checkstyle-plugin/commit/fbe29ae67bb1b40e73cfcb67f856533263ee565e";>fbe29ae
 Remove outdated invoker conditions
   https://github.com/apache/maven-checkstyle-plugin/commit/67aeb01196b46db8ef6f55a51bb9f00515f39c61";>67aeb01
 Bump org.codehaus.mojo:animal-sniffer-maven-plugin from 1.23 to 1.24
   Additional commits viewable in https://github.com/apache/maven-checkstyle-plugin/compare/maven-checkstyle-plugin-3.4.0...maven-checkstyle-plugin-3.5.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-checkstyle-plugin&package-manager=maven&previous-version=3.4.0&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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump org.junit:junit-bom from 5.10.3 to 5.11.0 [creadur-rat]

2024-09-15 Thread via GitHub


dependabot[bot] opened a new pull request, #321:
URL: https://github.com/apache/creadur-rat/pull/321

   Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 
5.10.3 to 5.11.0.
   
   Release notes
   Sourced from https://github.com/junit-team/junit5/releases";>org.junit:junit-bom's 
releases.
   
   JUnit 5.11.0 = Platform 1.11.0 + Jupiter 5.11.0 + Vintage 5.11.0
   See http://junit.org/junit5/docs/5.11.0/release-notes/";>Release 
Notes.
   New Contributors
   
   https://github.com/pshevche";>@​pshevche made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3427";>junit-team/junit5#3427
   https://github.com/rybak";>@​rybak made their 
first contribution in https://redirect.github.com/junit-team/junit5/pull/3416";>junit-team/junit5#3416
   https://github.com/pixeebot";>@​pixeebot made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3491";>junit-team/junit5#3491
   https://github.com/shartte";>@​shartte made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3562";>junit-team/junit5#3562
   https://github.com/eliasnogueira";>@​eliasnogueira made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3674";>junit-team/junit5#3674
   https://github.com/bigdaz";>@​bigdaz made their 
first contribution in https://redirect.github.com/junit-team/junit5/pull/3668";>junit-team/junit5#3668
   https://github.com/gilday";>@​gilday made their 
first contribution in https://redirect.github.com/junit-team/junit5/pull/3667";>junit-team/junit5#3667
   https://github.com/bjmi";>@​bjmi made their 
first contribution in https://redirect.github.com/junit-team/junit5/pull/3806";>junit-team/junit5#3806
   https://github.com/madalingiurca";>@​madalingiurca made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3787";>junit-team/junit5#3787
   https://github.com/dmlloyd";>@​dmlloyd made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3820";>junit-team/junit5#3820
   https://github.com/compf";>@​compf made their 
first contribution in https://redirect.github.com/junit-team/junit5/pull/3867";>junit-team/junit5#3867
   https://github.com/SveinKare";>@​SveinKare made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3840";>junit-team/junit5#3840
   https://github.com/mobounya";>@​mobounya made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3720";>junit-team/junit5#3720
   https://github.com/robinjhector";>@​robinjhector made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3345";>junit-team/junit5#3345
   https://github.com/jabhatfield";>@​jabhatfield 
made their first contribution in https://redirect.github.com/junit-team/junit5/pull/3829";>junit-team/junit5#3829
   https://github.com/rfscholte";>@​rfscholte made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3909";>junit-team/junit5#3909
   
   Full Changelog: https://github.com/junit-team/junit5/compare/r5.10.3...r5.11.0";>https://github.com/junit-team/junit5/compare/r5.10.3...r5.11.0
   JUnit 5.11.0-RC1 = Platform 1.11.0-RC1 + Jupiter 5.11.0-RC1 + Vintage 
5.11.0-RC1
   See http://junit.org/junit5/docs/5.11.0-RC1/release-notes/";>Release 
Notes.
   New Contributors
   
   https://github.com/compf";>@​compf made their 
first contribution in https://redirect.github.com/junit-team/junit5/pull/3867";>junit-team/junit5#3867
   https://github.com/SveinKare";>@​SveinKare made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3840";>junit-team/junit5#3840
   https://github.com/mobounya";>@​mobounya made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3720";>junit-team/junit5#3720
   https://github.com/robinjhector";>@​robinjhector made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3345";>junit-team/junit5#3345
   https://github.com/jabhatfield";>@​jabhatfield 
made their first contribution in https://redirect.github.com/junit-team/junit5/pull/3829";>junit-team/junit5#3829
   
   Full Changelog: https://github.com/junit-team/junit5/compare/r5.11.0-M2...r5.11.0-RC1";>https://github.com/junit-team/junit5/compare/r5.11.0-M2...r5.11.0-RC1
   JUnit 5.11.0-M2 = Platform 1.11.0-M2 + Jupiter 5.11.0-M2 + Vintage 
5.11.0-M2
   See http://junit.org/junit5/docs/5.11.0-M2/release-notes/";>Release 
Notes.
   New Contributors
   
   https://github.com/bjmi";>@​bjmi made their 
first contribution in https://redirect.github.com/junit-team/junit5/pull/3806";>junit-team/junit5#3806
   https://github.com/madalingiurca";>@​madalingiurca made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3787";>junit-team/junit5#3787
   https://github.com/dmlloyd";>@​dmlloyd made 
their first contribution in https://redirect.github.com/junit-team/junit5/pull/3820";>junit-team/jun

[PR] Bump commons-cli:commons-cli from 1.8.0 to 1.9.0 [creadur-rat]

2024-09-15 Thread via GitHub


dependabot[bot] opened a new pull request, #319:
URL: https://github.com/apache/creadur-rat/pull/319

   Bumps commons-cli:commons-cli from 1.8.0 to 1.9.0.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-cli:commons-cli&package-manager=maven&previous-version=1.8.0&new-version=1.9.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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump org.apache.maven.plugins:maven-invoker-plugin from 3.7.0 to 3.8.0 [creadur-rat]

2024-09-15 Thread via GitHub


dependabot[bot] opened a new pull request, #323:
URL: https://github.com/apache/creadur-rat/pull/323

   Bumps 
[org.apache.maven.plugins:maven-invoker-plugin](https://github.com/apache/maven-invoker-plugin)
 from 3.7.0 to 3.8.0.
   
   Release notes
   Sourced from https://github.com/apache/maven-invoker-plugin/releases";>org.apache.maven.plugins:maven-invoker-plugin's
 releases.
   
   maven-invoker-plugin-3.8.0
   What's Changed
   
   Add missing dependency by https://github.com/michael-o";>@​michael-o in https://redirect.github.com/apache/maven-invoker-plugin/pull/247";>apache/maven-invoker-plugin#247
   [MINVOKER-368] Filter artifacts by scope before resolving in install by 
https://github.com/slawekjaranowski";>@​slawekjaranowski 
in https://redirect.github.com/apache/maven-invoker-plugin/pull/249";>apache/maven-invoker-plugin#249
   Bump commons-codec:commons-codec from 1.17.0 to 1.17.1 by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/apache/maven-invoker-plugin/pull/252";>apache/maven-invoker-plugin#252
   Bump org.apache.groovy:groovy-bom from 4.0.21 to 4.0.22 by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/apache/maven-invoker-plugin/pull/248";>apache/maven-invoker-plugin#248
   Bump org.assertj:assertj-core from 3.25.3 to 3.26.3 by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/apache/maven-invoker-plugin/pull/251";>apache/maven-invoker-plugin#251
   Bump org.apache.maven.plugins:maven-plugins from 42 to 43 by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/apache/maven-invoker-plugin/pull/250";>apache/maven-invoker-plugin#250
   [MINVOKER-354] Upgrade to Doxia 2.0.0 Milestone Stack by https://github.com/michael-o";>@​michael-o in https://redirect.github.com/apache/maven-invoker-plugin/pull/187";>apache/maven-invoker-plugin#187
   
   Full Changelog: https://github.com/apache/maven-invoker-plugin/compare/maven-invoker-plugin-3.7.0...maven-invoker-plugin-3.8.0";>https://github.com/apache/maven-invoker-plugin/compare/maven-invoker-plugin-3.7.0...maven-invoker-plugin-3.8.0
   
   
   
   Commits
   
   https://github.com/apache/maven-invoker-plugin/commit/3542f383610f5f1ce55ee2e6a9f6e04616c28e9f";>3542f38
 [maven-release-plugin] prepare release maven-invoker-plugin-3.8.0
   https://github.com/apache/maven-invoker-plugin/commit/843ddcf999cd54ab6360e13d64898943c824bd83";>843ddcf
 [MINVOKER-346] Align report output name
   https://github.com/apache/maven-invoker-plugin/commit/36bcf123d864bdb9fb698f78f7c7524a8d58f6ee";>36bcf12
 [MINVOKER-354] Upgrade to Doxia 2.0.0 Milestone Stack
   https://github.com/apache/maven-invoker-plugin/commit/aeba2b62427e4a9fbd05bc1c7e95f57a0bb99e7e";>aeba2b6
 Bump org.apache.maven.plugins:maven-plugins from 42 to 43
   https://github.com/apache/maven-invoker-plugin/commit/7a0d04874d1f3a22e366185cd307dc4d20ad0c0d";>7a0d048
 Bump org.assertj:assertj-core from 3.25.3 to 3.26.3
   https://github.com/apache/maven-invoker-plugin/commit/afacc74360cc52e26b312a91191ccd141a09952e";>afacc74
 Bump org.apache.groovy:groovy-bom from 4.0.21 to 4.0.22
   https://github.com/apache/maven-invoker-plugin/commit/b2f40e87d7bfd69cd1f1ced4caf5eea0586e6741";>b2f40e8
 Bump commons-codec:commons-codec from 1.17.0 to 1.17.1
   https://github.com/apache/maven-invoker-plugin/commit/1bd7bb2d009b40d747fad3808458d984c4abde21";>1bd7bb2
 [MINVOKER-368] Filter artifacts by scope before resolving in install
   https://github.com/apache/maven-invoker-plugin/commit/affa7beadb96e934ce1fe0124d0cc7eb3d16f245";>affa7be
 Add missing dependency
   https://github.com/apache/maven-invoker-plugin/commit/40a10b7e2b0e764b5e916bf8d82c76d44eb4b6de";>40a10b7
 [maven-release-plugin] prepare for next development iteration
   See full diff in https://github.com/apache/maven-invoker-plugin/compare/maven-invoker-plugin-3.7.0...maven-invoker-plugin-3.8.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-invoker-plugin&package-manager=maven&previous-version=3.7.0&new-version=3.8.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 

Re: [PR] RAT-384: Fix for index missing text [creadur-rat]

2024-09-15 Thread via GitHub


Claudenw commented on PR #318:
URL: https://github.com/apache/creadur-rat/pull/318#issuecomment-2351795979

   Nope.  I need to delete it.  It reminded me of wwhy the files were missing
   in the earlier pull requesta
   
   On Sun 15 Sept 2024, 22:18 P. Ottlinger, ***@***.***> wrote:
   
   > should this become a part of #301
   >  ?
   >
   > —
   > Reply to this email directly, view it on GitHub
   > ,
   > or unsubscribe
   > 

   > .
   > You are receiving this because you authored the thread.Message ID:
   > ***@***.***>
   >
   


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-15 Thread via GitHub


ottlinger commented on code in PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#discussion_r1760334355


##
src/site/apt/index.apt.vm:
##
@@ -183,7 +177,7 @@ cd creadur-rat
 mvn clean install
 +--+
 
-or with the included Maven wrapper
+ or with the included Maven wrapper

Review Comment:
   I assume this is already fixed in master 



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: Fix for index missing text [creadur-rat]

2024-09-15 Thread via GitHub


ottlinger commented on PR #318:
URL: https://github.com/apache/creadur-rat/pull/318#issuecomment-2351794703

   should this become a part of #301 ?


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-15 Thread via GitHub


ottlinger commented on PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#issuecomment-2351793017

   @Claudenw WDYT - should we add a changelog entry for this one as it enhances 
the functionality and introduces the whole XSD/configuration handling?


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-15 Thread via GitHub


ottlinger commented on code in PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#discussion_r1760333196


##
src/site/apt/license_def.apt.vm:
##
@@ -29,7 +29,9 @@ How to define licenses in Apache Rat
  scope of this document.  In this document we will address how to define 
licenses in the default XML format.
  
  The XML document has a root node named "rat-config" which comprises 4 major 
sections: "Families", 
- "Licenses", "Approved" and "Matchers".
+ "Licenses", "Approved" and "Matchers".  There is an 
{{{./apache-rat/rat.xsd}}XSD} that can be used to validate

Review Comment:
   @Claudenw is there a technical reason for each sentence to start with 2 
spaces? (or is it just a formatter setting of yours)



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-15 Thread via GitHub


ottlinger commented on code in PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#discussion_r1760331130


##
apache-rat-tools/src/test/java/org/apache/rat/tools/NamingTest.java:
##
@@ -181,10 +181,4 @@ private void assertContains(String expected, List 
actual) {
 private void assertNotContains(String expected, List actual) {
 assertFalse(actual.contains(expected), () -> "Contains "+expected);
 }
-
-@Test

Review Comment:
   If I'm not too mistaken I added these tests to validate the NPE-safeness of 
the Naming class? Is that not needed anymore?



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-15 Thread via GitHub


ottlinger commented on code in PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#discussion_r1760330508


##
apache-rat-tools/src/main/java/org/apache/rat/tools/xsd/XsdWriter.java:
##
@@ -0,0 +1,84 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.rat.tools.xsd;
+
+import org.apache.rat.ReportConfiguration;
+import org.apache.rat.report.xml.writer.impl.base.XmlWriter;
+
+import java.io.IOException;
+import java.io.OutputStreamWriter;
+import java.io.Writer;
+
+public class XsdWriter {
+private final XmlWriter writer;
+
+public enum Type {
+ELEMENT("xs:element"), ATTRIBUTE("xs:attribute"),
+COMPLEX("xs:complexType"), SEQUENCE("xs:sequence"), 
SIMPLE("xs:simpleContent"),
+EXTENSION("xs:extension"), CHOICE("xs:choice"), 
COMPLEX_CONTENT("xs:complexContent");
+private String elementName;
+
+Type(String name) {
+elementName = name;
+}
+}
+
+public XsdWriter(Writer writer) {
+this.writer = new XmlWriter(writer);
+}
+
+public XsdWriter init() throws IOException {
+writer.startDocument()
+.openElement("xs:schema")
+.attribute("attributeFormDefault", "unqualified")
+.attribute("xmlns:xs", "http://www.w3.org/2001/XMLSchema";);
+return this;
+}
+
+public void fini() throws IOException {

Review Comment:
   should this be finish() instead?



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-15 Thread via GitHub


ottlinger commented on code in PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#discussion_r1760316922


##
apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/impl/base/XmlWriter.java:
##
@@ -627,6 +627,39 @@ public IXmlWriter closeElement() throws IOException {
 return this;
 }
 
+/**
+ * Closes back to and including the last instance of the specified element 
nema.
+ * @param name The name of the element to close.
+ * @return this object
+ * @throws OperationNotAllowedException if called before any call to
+ * {@link #openElement} or after the first element has been closed
+ */
+@Override
+public IXmlWriter closeElement(CharSequence name) throws IOException {

Review Comment:
   Is NPE-safeness an issue here? Should we throw an exception if invalid/null 
is passed in here?



-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384: write xsd (RAT-384 part 2) (Harmonize - Part 5) [creadur-rat]

2024-09-15 Thread via GitHub


ottlinger commented on code in PR #301:
URL: https://github.com/apache/creadur-rat/pull/301#discussion_r1760310804


##
apache-rat-core/src/main/java/org/apache/rat/help/AbstractHelp.java:
##
@@ -78,4 +80,98 @@ public static String createPadding(final int len) {
 public static String header(final String txt) {
 return String.format("%n== %s ==%n", 
WordUtils.capitalizeFully(txt));
 }
+
+public class RatHelpFormatter extends HelpFormatter {
+
+RatHelpFormatter() {
+super();
+this.optionComparator = OptionCollection.optionComparator;
+this.setWidth(HELP_WIDTH);
+}
+
+public void printHelp(final PrintWriter pw, final String 
cmdLineSyntax, final String header, final Options options, final String footer) 
{
+if (StringUtils.isEmpty(cmdLineSyntax)) {
+throw new IllegalArgumentException("cmdLineSyntax not 
provided");
+}
+
+helpFormatter.printUsage(pw, HELP_WIDTH, cmdLineSyntax);
+
+if (header != null && !header.isEmpty()) {
+helpFormatter.printWrapped(pw, HELP_WIDTH, header);
+}
+printOptions(pw, HELP_WIDTH, options, 
helpFormatter.getLeftPadding(), helpFormatter.getDescPadding());
+if (footer != null && !footer.isEmpty()) {
+helpFormatter.printWrapped(pw, helpFormatter.getWidth(), 
footer);
+}
+}
+
+
+protected StringBuffer renderOptions(final StringBuffer sb, final int 
width, final Options options, final int leftPad, final int descPad) {

Review Comment:
   Isn't StringBuilder due to performance issues a better choice here?



-- 
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: dev-unsubscr...@creadur.apache.org

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



[PR] Fix for index missing text. [creadur-rat]

2024-09-15 Thread via GitHub


Claudenw opened a new pull request, #318:
URL: https://github.com/apache/creadur-rat/pull/318

   Fixed index to include text


-- 
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: dev-unsubscr...@creadur.apache.org

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



[PR] RAT-383 autoupdate ant documentation ((Harmonize - Part 5 - pt 2) [creadur-rat]

2024-09-13 Thread via GitHub


Claudenw opened a new pull request, #317:
URL: https://github.com/apache/creadur-rat/pull/317

   DO NOT MERGE
   
   Add Auto update to ANT documentation.


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] Bump com.gradle:develocity-maven-extension from 1.22 to 1.22.1 [creadur-tentacles]

2024-09-13 Thread via GitHub


ottlinger merged PR #151:
URL: https://github.com/apache/creadur-tentacles/pull/151


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] Bump loggerVersion from 2.23.1 to 2.24.0 [creadur-tentacles]

2024-09-13 Thread via GitHub


ottlinger merged PR #150:
URL: https://github.com/apache/creadur-tentacles/pull/150


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] TENTACLES-16: Bump com.gradle:develocity-maven-extension from 1.22 to 1.22.1 [creadur-whisker]

2024-09-13 Thread via GitHub


ottlinger merged PR #187:
URL: https://github.com/apache/creadur-whisker/pull/187


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] TENTACLES-16: Bump org.apache.maven.plugins:maven-checkstyle-plugin from 3.4.0 to 3.5.0 [creadur-whisker]

2024-09-13 Thread via GitHub


ottlinger merged PR #186:
URL: https://github.com/apache/creadur-whisker/pull/186


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump com.gradle:common-custom-user-data-maven-extension from 2.0 to 2.0.1 [creadur-rat]

2024-09-13 Thread via GitHub


ottlinger merged PR #314:
URL: https://github.com/apache/creadur-rat/pull/314


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump ant.version from 1.10.14 to 1.10.15 [creadur-rat]

2024-09-13 Thread via GitHub


ottlinger merged PR #312:
URL: https://github.com/apache/creadur-rat/pull/312


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump mavenVersion from 3.9.8 to 3.9.9 [creadur-rat]

2024-09-13 Thread via GitHub


ottlinger merged PR #313:
URL: https://github.com/apache/creadur-rat/pull/313


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump mavenPluginPluginVersion from 3.13.1 to 3.15.0 [creadur-rat]

2024-09-13 Thread via GitHub


ottlinger merged PR #315:
URL: https://github.com/apache/creadur-rat/pull/315


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-345: Bump org.apache.maven.plugins:maven-dependency-plugin from 3.7.1 to 3.8.0 [creadur-rat]

2024-09-13 Thread via GitHub


ottlinger merged PR #316:
URL: https://github.com/apache/creadur-rat/pull/316


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384 naming changes (RAT-384 Part 1) [creadur-rat]

2024-09-13 Thread via GitHub


Claudenw merged PR #300:
URL: https://github.com/apache/creadur-rat/pull/300


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384 naming changes (RAT-384 Part 1) [creadur-rat]

2024-09-12 Thread via GitHub


ottlinger commented on PR #300:
URL: https://github.com/apache/creadur-rat/pull/300#issuecomment-2347262056

   @Claudenw if you are okay with my changes feel free to merge this PR. Thanks 
again for the changes!


-- 
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: dev-unsubscr...@creadur.apache.org

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



Re: [PR] RAT-384 naming changes (RAT-384 Part 1) [creadur-rat]

2024-09-12 Thread via GitHub


Claudenw commented on PR #300:
URL: https://github.com/apache/creadur-rat/pull/300#issuecomment-2345425422

   Changes look good to me.  Though my plan is to do a massive clean up of 
checkstyle issues after Harmonization (or at the end of harmonization)


-- 
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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump com.gradle:develocity-maven-extension from 1.22 to 1.22.1 [creadur-tentacles]

2024-09-11 Thread via GitHub


dependabot[bot] opened a new pull request, #151:
URL: https://github.com/apache/creadur-tentacles/pull/151

   Bumps com.gradle:develocity-maven-extension from 1.22 to 1.22.1.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.gradle:develocity-maven-extension&package-manager=maven&previous-version=1.22&new-version=1.22.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: dev-unsubscr...@creadur.apache.org

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



[PR] Bump com.gradle:develocity-maven-extension from 1.22 to 1.22.1 [creadur-whisker]

2024-09-10 Thread via GitHub


dependabot[bot] opened a new pull request, #187:
URL: https://github.com/apache/creadur-whisker/pull/187

   Bumps com.gradle:develocity-maven-extension from 1.22 to 1.22.1.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.gradle:develocity-maven-extension&package-manager=maven&previous-version=1.22&new-version=1.22.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: dev-unsubscr...@creadur.apache.org

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



  1   2   3   4   5   6   7   8   9   10   >