This is an automated email from the ASF dual-hosted git repository. pottlinger pushed a commit to branch fix/RAT-451 in repository https://gitbox.apache.org/repos/asf/creadur-rat.git
commit 722b82b60407c37ce2cb04967c0e61d3d203e139 Author: P. Ottlinger <[email protected]> AuthorDate: Sun Nov 10 01:09:28 2024 +0100 RAT-451: Generate plugin code into the same package. --- apache-rat-plugin/pom.xml | 2 ++ src/changes/changes.xml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/apache-rat-plugin/pom.xml b/apache-rat-plugin/pom.xml index 7c67f6af..6ca5f0f7 100644 --- a/apache-rat-plugin/pom.xml +++ b/apache-rat-plugin/pom.xml @@ -68,6 +68,8 @@ <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> <goalPrefix>apache-rat</goalPrefix> + <!-- RAT-451: Generate into the same package as other auto-generated code --> + <helpPackageName>org.apache.rat.plugin</helpPackageName> </configuration> <executions> <execution> diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 84290a2f..841483de 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -72,6 +72,9 @@ The <action> type attribute can be one of: </release> --> <release version="0.17-SNAPSHOT" date="xxxx-yy-zz" description="Current SNAPSHOT - release to be done"> + <action issue="RAT-358" type="fix" dev="pottlinger"> + Generate Maven help Mojo documentation under the same package as the auto-generated plugin parts: org.apache.rat.plugin. + </action> <action issue="RAT-358" type="add" dev="claudenw"> Overhaul documentation of the new functionality of RAT 0.17. Improve and comprehend the whole project webpage. </action>
