Skip to content

Commit

Permalink
Update sbt to 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
47erbot authored Apr 5, 2021
1 parent 667033d commit 3b3c232
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ object SrcGenPlugin extends AutoPlugin {
}

lazy val packagingSettings: Seq[Def.Setting[_]] = Seq(
mappings in (Compile, packageSrc) ++= {
Compile / packageSrc / mappings ++= {
val allIDLDefinitions = ((Compile / muSrcGenIdlTargetDir).value ** "*") filter { _.isFile }
val idlMappings = allIDLDefinitions.get pair Path
.rebase((Compile / muSrcGenIdlTargetDir).value, (Compile / classDirectory).value)
Expand All @@ -249,7 +249,7 @@ object SrcGenPlugin extends AutoPlugin {
// Register the muSrcGen task as a source generator.
// If we don't do this, the compile task will not see the
// generated files even if the user manually runs the muSrcGen task.
sourceGenerators in Compile += (muSrcGen in Compile).taskValue
Compile / sourceGenerators += (Compile / muSrcGen).taskValue
)

private def srcGenTask(
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.4.9
sbt.version = 1.5.0

0 comments on commit 3b3c232

Please sign in to comment.