You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by cg...@apache.org on 2023/02/10 01:42:10 UTC

[drill] branch master updated: DRILL-8396: Checkstyle plugin works only with JDK 11+ (#2753)

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

cgivre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git


The following commit(s) were added to refs/heads/master by this push:
     new a014fd03b2 DRILL-8396: Checkstyle plugin works only with JDK 11+ (#2753)
a014fd03b2 is described below

commit a014fd03b275c61a0d7d9c72e10fa3cfe6df055c
Author: Volodymyr Vysotskyi <vv...@gmail.com>
AuthorDate: Fri Feb 10 03:42:01 2023 +0200

    DRILL-8396: Checkstyle plugin works only with JDK 11+ (#2753)
---
 pom.xml | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index baf2d3433b..a653d62ac2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -72,7 +72,7 @@
     <curator.version>5.2.0</curator.version>
     <wiremock.standalone.version>2.23.2</wiremock.standalone.version>
     <jmockit.version>1.47</jmockit.version>
-    <logback.version>1.4.5</logback.version>
+    <logback.version>1.3.5</logback.version>
     <mockito.version>3.11.2</mockito.version>
     <!--
       Currently, Hive storage plugin only supports Apache Hive 3.1.3 or vendor specific variants of the
@@ -481,9 +481,9 @@
         <artifactId>maven-checkstyle-plugin</artifactId>
         <dependencies>
           <dependency>
-            <groupId>com.puppycrawl.tools</groupId>
-            <artifactId>checkstyle</artifactId>
-            <version>10.7.0</version>
+            <groupId>com.github.rnveach</groupId>
+            <artifactId>checkstyle-backport-jre8</artifactId>
+            <version>checkstyle-backport-10.7.0</version>
           </dependency>
         </dependencies>
         <configuration>
@@ -1071,6 +1071,12 @@
       </plugins>
     </pluginManagement>
   </build>
+  <pluginRepositories>
+    <pluginRepository>
+      <id>jitpack.io</id>
+      <url>https://jitpack.io</url>
+    </pluginRepository>
+  </pluginRepositories>
   <dependencies>
 
     <dependency>