You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2015/09/29 01:08:18 UTC

[3/3] maven git commit: workaround: maven-checkstyle-plugin and maven-remote-resources-plugin are depending on versions 1.5.6 of slf4j-jdk14 and jcl-over-slf4j artifacts which are incompatible with 1.7.5 version exposed by maven core

workaround: maven-checkstyle-plugin and maven-remote-resources-plugin are depending on versions 1.5.6 of slf4j-jdk14 and jcl-over-slf4j artifacts which are incompatible with 1.7.5 version exposed by maven core


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/2c78decb
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/2c78decb
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/2c78decb

Branch: refs/heads/slf4j-log4j2.4
Commit: 2c78decb96758cdf46c3561a274ff7f18a8b3a9d
Parents: a1ccea1
Author: Arnaud Héritier <ah...@apache.org>
Authored: Tue Sep 29 00:53:46 2015 +0200
Committer: Arnaud Héritier <ah...@apache.org>
Committed: Tue Sep 29 00:53:46 2015 +0200

----------------------------------------------------------------------
 apache-maven/pom.xml | 12 ++++++++++++
 pom.xml              | 12 ++++++++++++
 2 files changed, 24 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/2c78decb/apache-maven/pom.xml
----------------------------------------------------------------------
diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
index e3afbcc..0b0798b 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -114,6 +114,18 @@
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-remote-resources-plugin</artifactId>
           <version>1.5</version>
+          <dependencies>
+            <dependency>
+              <groupId>org.slf4j</groupId>
+              <artifactId>jcl-over-slf4j</artifactId>
+              <version>${slf4jVersion}</version>
+            </dependency>
+            <dependency>
+              <groupId>org.slf4j</groupId>
+              <artifactId>slf4j-jdk14</artifactId>
+              <version>${slf4jVersion}</version>
+            </dependency>
+          </dependencies>
         </plugin>
         <plugin>
           <groupId>org.apache.rat</groupId>

http://git-wip-us.apache.org/repos/asf/maven/blob/2c78decb/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 4084a77..cea9ed3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -532,6 +532,18 @@
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-checkstyle-plugin</artifactId>
           <version>2.14</version>
+          <dependencies>
+            <dependency>
+              <groupId>org.slf4j</groupId>
+              <artifactId>jcl-over-slf4j</artifactId>
+              <version>${slf4jVersion}</version>
+            </dependency>
+            <dependency>
+              <groupId>org.slf4j</groupId>
+              <artifactId>slf4j-jdk14</artifactId>
+              <version>${slf4jVersion}</version>
+            </dependency>
+          </dependencies>
         </plugin>
       </plugins>
     </pluginManagement>