This is an automated email from the ASF dual-hosted git repository.
pkarwasz pushed a change to branch processor
in repository https://gitbox.apache.org/repos/asf/logging-log4j-tools.git
discard 4cbbfbd Add annotation processor to generate documentation
add 975a312 Fix minor typos and warnings
add 687d476 Remove remaining `StringBuilderFormattable` occurences
add a68c9dd Add annotation processor to generate documentation
add ccab8f5 Review fixes for #102
add 1cd484a Remove dependency on annotation classes
add 8abc774 Downgrade Java version to 11.
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (4cbbfbd)
\
N -- N -- N refs/heads/processor (8abc774)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
log4j-docgen/pom.xml | 57 +++-
.../internal/DefaultFreeMarkerGenerator.java | 3 +-
.../docgen/internal/DefaultSchemaGenerator.java | 18 +-
.../processor/AbstractAsciidocTreeVisitor.java | 34 ++-
.../log4j/docgen/processor/Annotations.java | 239 +++++++++++++++
.../log4j/docgen/processor/AsciidocConverter.java | 12 +-
.../log4j/docgen/processor/AsciidocData.java | 7 +-
.../log4j/docgen/processor/DocGenProcessor.java | 339 +++++++++------------
.../docgen/processor/internal/SectionImpl.java | 8 +-
.../processor/internal/StructuralNodeImpl.java | 11 +-
.../log4j/docgen/processor/internal/TableImpl.java | 9 +-
.../logging/log4j/docgen/util/TypeLookup.java | 25 +-
log4j-docgen/src/main/mdo/plugins-model.xml | 49 +++
log4j-docgen/src/test/it/example/MyAppender.java | 2 +
log4j-docgen/src/test/it/example/MyOldLayout.java | 3 +-
.../docgen/processor/AsciidocConverterTest.java | 7 +-
.../docgen/processor/DocGenProcessorTest.java | 7 +-
.../resources/expected/freemarker/scalars.adoc | 4 +
.../expected/processor/META-INF/log4j/plugins.xml | 4 +-
.../src/test/resources/templates/scalars.ftl | 1 +
20 files changed, 572 insertions(+), 267 deletions(-)
create mode 100644
log4j-docgen/src/main/java/org/apache/logging/log4j/docgen/processor/Annotations.java