ottlinger commented on code in PR #566: URL: https://github.com/apache/creadur-rat/pull/566#discussion_r2504879121
########## apache-rat/src/site/markdown/migrationguide/0.17.md: ########## @@ -0,0 +1,30 @@ +<!--- + 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. +--> + +# Creadur RAT Migration Guide - Release 0.17 + +As release 0.17 introduced new configuration options you should check your logs for deprecation warnings. + +## Maven + +Under the ```<configuration>``` element remove all deprecated configuration options. + +* Replace option ```<exclude>``` by ```<inputExclude>``` and start replacing your desired exclusion elements. +* As the parsing logics of exclusion has changed, you may want to verify if you can remove trailing/beginning slashes of your exclusions. +* In order to use available default exclusions, you may add them via ```<inputExcludeStd>ALL</inputExcludeStd>```. Available exclusions are pre-configured in the enumeration [StandardCollection](https://creadur.apache.org/rat/apidocs/org/apache/rat/config/exclusion/StandardCollection.html). Review Comment: I wouldn't want to do this work here to generate the deprecation stuff - if it's easier than I think it is we should file a new ticket and provide this feature with a different PR IMO -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
