You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently in 3.5.0-RC1 and 3.5.0-RC2 the binary distribution contains both a lib directory, and a maven2 directory, which duplicate the jars necessary to run all of the commands. (About 40MB)
the classpath for scalac and scaladoc commands are resolved from lib, but the new scala command resolves jars from maven2.
I propose to drop the lib directory, and instead tell scalac and scaladoc commands to resolve from maven2 also.
As an implementation detail, we can explicitly write the classpath to a file, which would also solve issue #20413
The text was updated successfully, but these errors were encountered:
currently in
3.5.0-RC1
and3.5.0-RC2
the binary distribution contains both alib
directory, and amaven2
directory, which duplicate the jars necessary to run all of the commands. (About 40MB)the classpath for
scalac
andscaladoc
commands are resolved fromlib
, but the newscala
command resolves jars frommaven2
.I propose to drop the
lib
directory, and instead tellscalac
andscaladoc
commands to resolve frommaven2
also.As an implementation detail, we can explicitly write the classpath to a file, which would also solve issue #20413
The text was updated successfully, but these errors were encountered: