-
Notifications
You must be signed in to change notification settings - Fork 961
Upgrade Scala version from 2.13.8 to 2.13.14 #6603
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
54b0f4d
99a1cc4
364eea0
582de9b
d5b6797
13c11bf
541f860
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -241,7 +241,7 @@ | |
<maven.plugin.jacoco.version>0.8.11</maven.plugin.jacoco.version> | ||
<maven.plugin.scalastyle.version>1.0.0</maven.plugin.scalastyle.version> | ||
<maven.plugin.shade.version>3.5.2</maven.plugin.shade.version> | ||
<maven.plugin.silencer.version>1.7.13</maven.plugin.silencer.version> | ||
<maven.plugin.silencer.version>1.7.17</maven.plugin.silencer.version> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why we have to update the silencer version? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. each version of silencer has a strictly supported Scala version list, it's common to update with Scala version together There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Cool. SGTM. Thanks for the explanation. |
||
<!-- MSOURCES-121 breaks creating source artifacts for shaded modules, | ||
we should skip upgrading until MSOURCES-141 gets fixed. --> | ||
<maven.plugin.source.version>3.2.1</maven.plugin.source.version> | ||
|
@@ -1853,6 +1853,14 @@ | |
<enforceBytecodeVersion> | ||
<maxJdkVersion>${java.version}</maxJdkVersion> | ||
<ignoredScopes>test</ignoredScopes> | ||
<ignoreClasses> | ||
<!-- | ||
The package `org.jline.terminal.impl.ffm.*` contains some class files | ||
that are not compatible with JDK17 (only JDK21 is supported). | ||
However, it will not cause problems for use. See: https://github.com/scala/bug/issues/12994 | ||
--> | ||
<ignoreClass>org.jline.terminal.impl.ffm.*</ignoreClass> | ||
</ignoreClasses> | ||
</enforceBytecodeVersion> | ||
</rules> | ||
<fail>true</fail> | ||
|
@@ -1931,7 +1939,7 @@ | |
<id>scala-2.13</id> | ||
<properties> | ||
<scala.binary.version>2.13</scala.binary.version> | ||
<scala.version>2.13.8</scala.version> | ||
<scala.version>2.13.14</scala.version> | ||
<spark.archive.scala.suffix>-scala${scala.binary.version}</spark.archive.scala.suffix> | ||
</properties> | ||
</profile> | ||
|
Uh oh!
There was an error while loading. Please reload this page.