-
Notifications
You must be signed in to change notification settings - Fork 326
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
Cleanup jline dependencies #12020
Cleanup jline dependencies #12020
Conversation
A wild attempt at fixing MacOS signing process that prevents nightlies from working. Also cleaned up dependencies for wrapper projects - `scala-compiler` was unnecessary and was introducing jline requirement.
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.
Splitting the JLine dependencies into individual ones is OK, the removal of Scala compiler as a dependency is great.
"org.scala-lang" % "scala-reflect" % scalacVersion, | ||
"org.scala-lang" % "scala-compiler" % scalacVersion | ||
val scalaReflect = Seq( | ||
"org.scala-lang" % "scala-reflect" % scalacVersion |
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.
Removing scala-compiler
from our dependencies seems beneficial on its own.
@@ -1,7 +1,6 @@ | |||
module org.enso.scala.wrapper { | |||
requires scala.library; | |||
requires scala.reflect; | |||
requires org.jline; |
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.
Good removal.
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.
approving change to signArchivesMacOs.ts
Pull Request Description
A wild attempt at fixing MacOS signing process that prevents nightlies from working.
Also cleaned up dependencies for wrapper projects -
scala-compiler
was unnecessary and was introducing jline requirement.Related to #11957.
Important Notes
Not sure if this will fix the nightly as I'm still unable to confirm the real issue but this doesn't hurt.
Checklist
Please ensure that the following checklist has been satisfied before submitting the PR:
Scala,
Java,
TypeScript,
and
Rust
style guides. In case you are using a language not listed above, follow the Rust style guide.