This is an automated email from the ASF dual-hosted git repository. freeandnil pushed a commit to branch Feature/Antora in repository https://gitbox.apache.org/repos/asf/logging-log4net.git
commit 055772a228d490c103b28f81a82922c27b82c27f Author: Jan Friedrich <[email protected]> AuthorDate: Tue Oct 29 20:28:20 2024 +0100 excluded .idea folder from spotless plugin --- .github/workflows/build.yaml | 1 - .github/workflows/git-broadcast.yml | 16 ++++++++++++++++ .gitignore | 1 + pom.xml | 17 +++++++++++++++++ 4 files changed, 34 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a6d3241d..e4904c26 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -14,7 +14,6 @@ # See the License for the specific language governing permissions and # limitations under the License. # - name: build on: diff --git a/.github/workflows/git-broadcast.yml b/.github/workflows/git-broadcast.yml index 5541bf15..513b8c11 100644 --- a/.github/workflows/git-broadcast.yml +++ b/.github/workflows/git-broadcast.yml @@ -1,3 +1,19 @@ +# +# 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. +# name: Broadcast master updates to satellites on: diff --git a/.gitignore b/.gitignore index 0906a46a..2e4d1bc3 100644 --- a/.gitignore +++ b/.gitignore @@ -240,6 +240,7 @@ src/GeneratedAssemblyInfo.cs *.orig *.old *.swp +node build-tools buildreports vs_buildtools.exe diff --git a/pom.xml b/pom.xml index ccac106f..dcafecbb 100644 --- a/pom.xml +++ b/pom.xml @@ -157,6 +157,23 @@ </execution> </executions> </plugin> + + <plugin> + <groupId>com.diffplug.spotless</groupId> + <artifactId>spotless-maven-plugin</artifactId> + <configuration> + <formats> + <format> + <excludes> + <exclude>**/.idea/*</exclude> + <exclude>src/changelog/**/*.xml</exclude> + <exclude>.github/*</exclude> + </excludes> + </format> + </formats> + </configuration> + </plugin> + <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId>
