6502-opcodes/project/Scala3Plugin.scala

18 lines
407 B
Scala
Raw Normal View History

2022-02-14 17:32:56 +00:00
import sbt.Keys._
import sbt._
/**
* Automatically enriches projects with the following settings (despite the word "override").
*/
object Scala3Plugin extends AutoPlugin {
/**
* Thus plug-in will automatically be enabled; it has no requirements.
*/
override def trigger: PluginTrigger = AllRequirements
override val buildSettings: Seq[Setting[_]] = Seq(
scalaVersion := "2.13.8",
)
}