From c787dc9a220c341c9e7a18eb644885d78881c7d2 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2019 08:07:54 +0000 Subject: [PATCH 1/3] Bump applicationinsights-core from 2.4.1 to 2.5.0 Bumps [applicationinsights-core](https://github.com/Microsoft/ApplicationInsights-Java) from 2.4.1 to 2.5.0. - [Release notes](https://github.com/Microsoft/ApplicationInsights-Java/releases) - [Changelog](https://github.com/microsoft/ApplicationInsights-Java/blob/master/CHANGELOG.md) - [Commits](https://github.com/Microsoft/ApplicationInsights-Java/compare/2.4.1...2.5.0) Signed-off-by: dependabot-preview[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index eda5709ad85..d9ee55c2a7f 100644 --- a/build.gradle +++ b/build.gradle @@ -199,7 +199,7 @@ dependencies { } */ - compile group: 'com.microsoft.azure', name: 'applicationinsights-core', version: '2.4.1' + compile group: 'com.microsoft.azure', name: 'applicationinsights-core', version: '2.5.0' compile (group: 'com.microsoft.azure', name: 'applicationinsights-logging-log4j2', version: '2.4.1') { exclude module: "log4j-core" } From 23fc701488383ab6a99c862740885e1bea400bea Mon Sep 17 00:00:00 2001 From: Siedlerchr Date: Mon, 23 Sep 2019 14:18:28 +0200 Subject: [PATCH 2/3] remove applicationsinsight log4h dependency --- build.gradle | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index d9ee55c2a7f..891e50f05ac 100644 --- a/build.gradle +++ b/build.gradle @@ -200,9 +200,7 @@ dependencies { */ compile group: 'com.microsoft.azure', name: 'applicationinsights-core', version: '2.5.0' - compile (group: 'com.microsoft.azure', name: 'applicationinsights-logging-log4j2', version: '2.4.1') { - exclude module: "log4j-core" - } + testCompile 'junit:junit:4.12' testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2' From 27a91e099b243796d1da7f9cd7b9fc3833971f8d Mon Sep 17 00:00:00 2001 From: Siedlerchr Date: Mon, 23 Sep 2019 14:25:09 +0200 Subject: [PATCH 3/3] remove application insight log4j --- src/main/java/module-info.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java index d008a5d597c..067b54aa547 100644 --- a/src/main/java/module-info.java +++ b/src/main/java/module-info.java @@ -29,7 +29,6 @@ requires org.apache.logging.log4j; requires org.apache.logging.log4j.core; requires org.apache.logging.log4j.plugins; - requires applicationinsights.logging.log4j2; provides org.apache.logging.log4j.plugins.processor.PluginService with org.jabref.gui.logging.plugins.Log4jPlugins;