You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by vy...@apache.org on 2023/01/23 11:51:39 UTC

[logging-log4j-tools] branch master updated (0243a02 -> e8801fa)

This is an automated email from the ASF dual-hosted git repository.

vy pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j-tools.git


    from 0243a02  Fix typo in `log4j-changelog` README
     add 1642bc8  #20 - Add Maven changelog plugins
     add 2a7226a  Fix comments
     add 1addafc  Make it ready for merge
     new e8801fa  Add Maven plugin for `log4j-changelog` (#20)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG.adoc                                     |  6 +-
 README.adoc                                        |  3 +
 log4j-changelog-maven-plugin/README.adoc           | 73 ++++++++++++++++++++++
 .../pom.xml                                        | 39 ++++++++++--
 .../java/org/apache/logging/log4j/ExportMojo.java  | 62 ++++++++++++++++++
 .../java/org/apache/logging/log4j/ReleaseMojo.java | 59 +++++++++++++++++
 log4j-changelog/README.adoc                        |  2 +-
 .../changelog/exporter/ChangelogExporter.java      |  5 +-
 .../changelog/exporter/ChangelogExporterArgs.java  | 14 ++++-
 .../importer/MavenChangesImporterArgs.java         | 14 +++--
 .../changelog/releaser/ChangelogReleaser.java      | 30 +++++----
 .../changelog/releaser/ChangelogReleaserArgs.java  | 17 +++--
 log4j-tools-parent/pom.xml                         | 32 ++++++++--
 pom.xml                                            | 11 +++-
 14 files changed, 327 insertions(+), 40 deletions(-)
 create mode 100644 log4j-changelog-maven-plugin/README.adoc
 copy {log4j-changelog => log4j-changelog-maven-plugin}/pom.xml (59%)
 create mode 100644 log4j-changelog-maven-plugin/src/main/java/org/apache/logging/log4j/ExportMojo.java
 create mode 100644 log4j-changelog-maven-plugin/src/main/java/org/apache/logging/log4j/ReleaseMojo.java


[logging-log4j-tools] 01/01: Add Maven plugin for `log4j-changelog` (#20)

Posted by vy...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j-tools.git

commit e8801faf3551998ad569155f9c89219786758c38
Merge: 0243a02 1addafc
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Mon Jan 23 12:51:34 2023 +0100

    Add Maven plugin for `log4j-changelog` (#20)

 CHANGELOG.adoc                                     |  6 +-
 README.adoc                                        |  3 +
 log4j-changelog-maven-plugin/README.adoc           | 73 +++++++++++++++++++++
 log4j-changelog-maven-plugin/pom.xml               | 75 ++++++++++++++++++++++
 .../java/org/apache/logging/log4j/ExportMojo.java  | 62 ++++++++++++++++++
 .../java/org/apache/logging/log4j/ReleaseMojo.java | 59 +++++++++++++++++
 log4j-changelog/README.adoc                        |  2 +-
 .../changelog/exporter/ChangelogExporter.java      |  5 +-
 .../changelog/exporter/ChangelogExporterArgs.java  | 14 +++-
 .../importer/MavenChangesImporterArgs.java         | 14 ++--
 .../changelog/releaser/ChangelogReleaser.java      | 30 +++++----
 .../changelog/releaser/ChangelogReleaserArgs.java  | 17 +++--
 log4j-tools-parent/pom.xml                         | 32 +++++++--
 pom.xml                                            | 11 +++-
 14 files changed, 369 insertions(+), 34 deletions(-)