File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
// Add genprod to the build; It should be moved from `src/build` to `project` now that the Ant build is gone
2
- sources in Compile += ((baseDirectory).value.getParentFile / " src" / " build" / " genprod.scala" )
2
+ Compile / sources += ((baseDirectory).value.getParentFile / " src" / " build" / " genprod.scala" )
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ enablePlugins(BuildInfoPlugin)
12
12
13
13
lazy val buildClasspath = taskKey[String ](" Colon-separated (or semicolon-separated in case of Windows) list of entries on the sbt build classpath." )
14
14
15
- buildClasspath := (externalDependencyClasspath in Compile ).value.map(_.data).mkString(java.io.File .pathSeparator)
15
+ buildClasspath := (Compile / externalDependencyClasspath ).value.map(_.data).mkString(java.io.File .pathSeparator)
16
16
17
17
buildInfoKeys := Seq [BuildInfoKey ](buildClasspath)
18
18
You can’t perform that action at this time.
0 commit comments