File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed
sbt-dotty/sbt-test/scala2-compat/eff Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -1041,8 +1041,12 @@ object Build {
10411041 " -Dplugin.scalaVersion=" + dottyVersion,
10421042 " -Dsbt.boot.directory=" + ((baseDirectory in ThisBuild ).value / " .sbt-scripted" ).getAbsolutePath // Workaround sbt/sbt#3469
10431043 ),
1044- // Pass along ivy home setting to sbt instances run from the tests
1045- scriptedLaunchOpts ++= ivyPaths.value.ivyHome.map(" -Dsbt.ivy.home=" + _.getAbsolutePath).toList,
1044+ // Pass along ivy home and repositories settings to sbt instances run from the tests
1045+ scriptedLaunchOpts ++= {
1046+ val repositoryPath = (io.Path .userHome / " .sbt" / " repositories" ).absolutePath
1047+ s " -Dsbt.repository.config= $repositoryPath" ::
1048+ ivyPaths.value.ivyHome.map(" -Dsbt.ivy.home=" + _.getAbsolutePath).toList
1049+ },
10461050 scriptedBufferLog := true ,
10471051 scripted := scripted.dependsOn(
10481052 publishLocal in `dotty-sbt-bridge`,
Original file line number Diff line number Diff line change 11scalaVersion := sys.props(" plugin.scalaVersion" )
22
33libraryDependencies +=
4- (" org.atnos" %% " eff" % " 5.4.1 " ).withDottyCompat(scalaVersion.value)
4+ (" org.atnos" %% " eff" % " 5.5.2 " ).withDottyCompat(scalaVersion.value)
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ > compile
You can’t perform that action at this time.
0 commit comments