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 2022/12/02 11:50:29 UTC

[logging-log4j-tools] branch master updated (794690e -> 4c4b34f)

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 794690e  Fix deploy command in CI.
     new 723f5d4  Add `.mvn/jvm.config` file.
     new b3fec8b  Install and deploy at the end in CI.
     new 5d449d3  Bump Error Prone version to 2.16.
     new 4c4b34f  Add an old, dummy dependency to test dependabot integration.

The 4 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:
 .github/workflows/build.yml |  2 ++
 .mvn/jvm.config             |  1 +
 pom.xml                     | 13 ++++++++++++-
 3 files changed, 15 insertions(+), 1 deletion(-)
 create mode 100644 .mvn/jvm.config


[logging-log4j-tools] 04/04: Add an old, dummy dependency to test dependabot integration.

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 4c4b34f0b267a26601bfa8e79813de344cc55d11
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Fri Dec 2 12:50:53 2022 +0100

    Add an old, dummy dependency to test dependabot integration.
---
 pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/pom.xml b/pom.xml
index d66a1ed..33d7cf6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -65,6 +65,15 @@
 
   </properties>
 
+  <!-- An old, dummy dependency to test dependabot integration. -->
+  <dependencies>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-all</artifactId>
+      <version>4.1.84.Final</version>
+    </dependency>
+  </dependencies>
+
   <build>
     <plugins>
 


[logging-log4j-tools] 03/04: Bump Error Prone version to 2.16.

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 5d449d39c1b5b791e051e72d1593c27dd8d37ee3
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Fri Dec 2 11:37:58 2022 +0100

    Bump Error Prone version to 2.16.
---
 pom.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index af25225..d66a1ed 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,7 +58,7 @@
     <java.version>1.8</java.version>
 
     <!-- library versions -->
-    <errorprone.version>2.6.0</errorprone.version>
+    <errorprone.version>2.16</errorprone.version>
 
     <!-- plugin versions -->
     <flatten-maven-plugin.version>1.3.0</flatten-maven-plugin.version>
@@ -79,6 +79,8 @@
           <fork>true</fork>
           <compilerArgs>
             <arg>-Xlint:all</arg>
+            <arg>-XDcompilePolicy=simple</arg>
+            <arg>-Xplugin:ErrorProne</arg>
           </compilerArgs>
           <annotationProcessorPaths>
             <path>


[logging-log4j-tools] 01/04: Add `.mvn/jvm.config` file.

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 723f5d4054077f25ddbfc32e1d86d4d274204bad
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Fri Dec 2 11:35:50 2022 +0100

    Add `.mvn/jvm.config` file.
---
 .mvn/jvm.config | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.mvn/jvm.config b/.mvn/jvm.config
new file mode 100644
index 0000000..2a2667e
--- /dev/null
+++ b/.mvn/jvm.config
@@ -0,0 +1 @@
+-Djava.awt.headless=true


[logging-log4j-tools] 02/04: Install and deploy at the end in CI.

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 b3fec8bc24b01f62908e2077234f251838a673b1
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Fri Dec 2 11:35:59 2022 +0100

    Install and deploy at the end in CI.
---
 .github/workflows/build.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 6bb91c9..8c123d7 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -154,6 +154,8 @@ jobs:
             --show-version --batch-mode --errors --no-transfer-progress \
             -Dgpg.skip=true \
             -DskipTests=true \
+            -DinstallAtEnd=true \
+            -DdeployAtEnd=true \
             --settings .github/workflows/maven-settings.xml \
             package install:install deploy:deploy
         env: