This is an automated email from the ASF dual-hosted git repository. pkarwasz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit 8c1753af5cba3124f33b8c36214da68c4c125cb5 Author: Piotr P. Karwasz <[email protected]> AuthorDate: Fri Oct 28 00:21:06 2022 +0200 Enable apache-rat-plugin --- .gitignore | 24 +++++++++++------------- pom.xml | 6 ++---- 2 files changed, 13 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index 0eb9654c5b..3faf4b45e3 100644 --- a/.gitignore +++ b/.gitignore @@ -12,22 +12,20 @@ # 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. - -.project -.idea -**/*.iml -**/target -target/ -.settings -.classpath +bin/ .cache-main .cache-tests -.toDelete +.classpath .factorypath -.surefire-* -velocity.log felix-cache/ -bin/ -.mvn/wrapper/MavenWrapperDownloader.java +.idea +**/*.iml /.metadata/ +.mvn/wrapper/MavenWrapperDownloader.java +.project +.settings .surefire-* +**/target +target/ +.toDelete +velocity.log diff --git a/pom.xml b/pom.xml index 7121f4ff12..80d38d9fee 100644 --- a/pom.xml +++ b/pom.xml @@ -1416,8 +1416,6 @@ <excludes> <!-- Matches other RAT configurations in this POM --> <exclude>src/main/resources/META-INF/services/**/*</exclude> - <!-- IntelliJ files --> - <exclude>.idea/**/*</exclude> <exclude>src/test/resources/**/*</exclude> <!-- IDE settings imports --> <exclude>src/ide/**</exclude> @@ -1435,6 +1433,7 @@ <exclude>**/.toDelete</exclude> <exclude>velocity.log</exclude> <!-- Other --> + <exclude>.java-version</exclude> <exclude>felix-cache/**</exclude> <exclude>**/*.md</exclude> <exclude>**/*.yml</exclude> @@ -1444,9 +1443,9 @@ <exclude>**/fluent-bit.conf</exclude> <exclude>**/rabbitmq.config</exclude> <exclude>**/MANIFEST.MF</exclude> + <exclude>.surefire-*</exclude> </excludes> </configuration> - <!-- Turn this one once it passes, not before. <executions> <execution> <phase>verify</phase> @@ -1455,7 +1454,6 @@ </goals> </execution> </executions> - --> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId>
