mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2024-11-19 07:31:35 +00:00
19 lines
400 B
Scala
19 lines
400 B
Scala
import sbt.Keys._
|
|
import sbt._
|
|
|
|
object ProjectPlugin extends AutoPlugin {
|
|
override def trigger = allRequirements
|
|
|
|
override lazy val projectSettings = Seq(
|
|
scalaVersion := "2.13.3"
|
|
)
|
|
|
|
object autoImport {
|
|
implicit class ProjectOps(p: Project) {
|
|
def withCats: Project =
|
|
p
|
|
.settings(libraryDependencies += "org.typelevel" %% "cats-core" % "2.2.0-RC2")
|
|
}
|
|
}
|
|
}
|