Skip to content

Commit 999e26a

Browse files
committed
Build.scala: Fix deprecation warnings
1 parent 51ab200 commit 999e26a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

project/Build.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ object DottyBuild extends Build {
1717
// "-XX:+HeapDumpOnOutOfMemoryError", "-Xmx1g", "-Xss2m"
1818
)
1919

20-
val defaults = Defaults.defaultSettings ++ Seq(
20+
val defaults = Defaults.coreDefaultSettings ++ Seq(
2121
scalaVersion in Global := "2.11.5",
2222
version in Global := "0.1-SNAPSHOT",
2323
organization in Global := "org.scala-lang",
@@ -123,7 +123,7 @@ object DottyBuild extends Build {
123123

124124
lazy val dotty = Project(id = "dotty", base = file("."), settings = defaults)
125125

126-
lazy val benchmarkSettings = Defaults.defaultSettings ++ Seq(
126+
lazy val benchmarkSettings = Defaults.coreDefaultSettings ++ Seq(
127127

128128
// to get Scala 2.11
129129
resolvers += Resolver.sonatypeRepo("releases"),

0 commit comments

Comments
 (0)