Skip to content

Commit

Permalink
updated jdk to 11 to stop the issue with codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
sonalgoyal committed Jun 20, 2024
1 parent 96159e4 commit 4399f4a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions log4j2.properties
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,7 @@ logger.zingg.name = zingg
logger.zingg.level = info
logger.zingg_analytics.name = zingg.common.core.util.Analytics
logger.zingg_analytics.level = off
logger.codegen.name = org.apache.spark.sql.catalyst.expressions
logger.codegen.level = OFF
logger.codehaus.name = org.codehaus
logger.codehaus.level = OFF
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
<zingg.version>0.4.1-SNAPSHOT</zingg.version>
<skipTests>false</skipTests>
<failIfNoTests>false</failIfNoTests>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mcheckstyle.version>2.10</mcheckstyle.version>
<mfindbugs.version>2.5.2</mfindbugs.version>
Expand Down
6 changes: 6 additions & 0 deletions spark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@
<groupId>graphframes</groupId>
<artifactId>graphframes</artifactId>
<version>${graphframes.version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

Expand Down

0 comments on commit 4399f4a

Please sign in to comment.