-
-
Notifications
You must be signed in to change notification settings - Fork 287
Port DependencyAnalyzer plugin to Scala 3 #1640
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
Port DependencyAnalyzer plugin to Scala 3 #1640
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, @WojciechMazur, for taking this long standing issue.
Please take a look at one minor comment and also please resolve conflict.
Overall all looks good. Thanks.
@@ -114,6 +115,8 @@ class AstUsedJarFinderTest extends AnyFunSuite { | |||
|
|||
expectedUnusedDeps.foreach { dep => | |||
val expectedError = s"Target '$dep' is specified as a dependency to ${TestUtil.defaultTarget} but isn't used, please remove it from the deps." | |||
println(errors) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These were only used when debugging, I forgot to remove them. Fixed now
…n compiling under Scala 3.1.3 (fixed in 3.2)
…angerous counterpart
… by Scala 3.1.3 is JDK 18
366f94a
to
779d02a
Compare
Description
dangerous_test_thirdparty_version.sh
- old script is no longer working, the applied patches are no longer applicable, thus always using the default version for given major Scala versionMotivation
Feature parity between Scala 2 and Scala 3 support. It's probably the last missing (major) piece.