Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate log4net site to Antora and use logging-parent pom #210

Draft
wants to merge 32 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
710af82
moved /src/site to /site.legacy
FreeAndNil Oct 28, 2024
7e7631f
first step for antora support
FreeAndNil Oct 28, 2024
a335591
Make `mvnw` executable
vy Oct 29, 2024
1204e0f
excluded .idea folder from spotless plugin
FreeAndNil Oct 29, 2024
7d3ab56
exclude binaries from spotless checks
FreeAndNil Nov 2, 2024
b3ac3bf
Merge remote-tracking branch 'origin/master' into Feature/Antora
FreeAndNil Nov 2, 2024
a34ac12
fixed spotless and rat warnings
FreeAndNil Nov 2, 2024
8edef1e
- cleaned up pom
FreeAndNil Nov 2, 2024
9826f8f
updated development.adoc
FreeAndNil Nov 2, 2024
b0fbd7d
Merge master
FreeAndNil Nov 8, 2024
159e924
fix duplicate tag in pom
FreeAndNil Nov 11, 2024
8a3042e
added release notes for 3.0.2 and 3.0.3
FreeAndNil Nov 11, 2024
6888d2d
fixed known issues section
FreeAndNil Nov 12, 2024
21459cf
added link to 2.x release notes
FreeAndNil Nov 12, 2024
2cbfc2a
added release note for 3.0.1
FreeAndNil Nov 14, 2024
c1c87ee
migrated release notes for 3.0.0
FreeAndNil Nov 18, 2024
80fae10
finished features page
FreeAndNil Dec 14, 2024
912e2ad
Merge remote-tracking branch 'origin/master' into Feature/Antora
FreeAndNil Dec 14, 2024
14d6c90
Merge remote-tracking branch 'origin/master' into Feature/Antora
FreeAndNil Dec 14, 2024
61015e4
added download an installation pages
FreeAndNil Dec 21, 2024
a685fd6
first part of configuration migrated
FreeAndNil Dec 21, 2024
86ba43f
Merge remote-tracking branch 'origin/master' into Feature/Antora
FreeAndNil Dec 21, 2024
9f0c9f3
added appenders doc
FreeAndNil Dec 30, 2024
6af5d75
refinde filters and layouts
FreeAndNil Feb 3, 2025
8210734
Merge
FreeAndNil Feb 23, 2025
0e9f159
Added release notes for 3.0.4
FreeAndNil Feb 23, 2025
a6309a7
finished appenders doc
FreeAndNil Feb 23, 2025
f9c1167
added release review instructions
FreeAndNil Feb 23, 2025
7da3bf5
extended configuration doc
FreeAndNil Feb 25, 2025
ae657c8
completed configuration.adoc
FreeAndNil Mar 2, 2025
d63a1c5
fix links
FreeAndNil Mar 5, 2025
86f7a84
updated config examples
FreeAndNil Mar 5, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
excluded .idea folder from spotless plugin
FreeAndNil committed Oct 29, 2024
commit 1204e0f9cffad002950d0326eddfcc37b8a9514c
16 changes: 16 additions & 0 deletions .github/workflows/git-broadcast.yml
Original file line number Diff line number Diff line change
@@ -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:
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -240,6 +240,7 @@ src/GeneratedAssemblyInfo.cs
*.orig
*.old
*.swp
node
build-tools
buildreports
vs_buildtools.exe
17 changes: 17 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -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>