aboutsummaryrefslogtreecommitdiff
path: root/plugin/src/sbt-test/sbt-jni/simple/project/ScriptedHelper.scala
blob: 27836f3f5562df76b67107797f79dcca0a85ff2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import sbt._
import sbt.Keys._

object ScriptedHelper extends AutoPlugin {

  override def requires = empty
  override def trigger = allRequirements

  override def projectSettings = Seq(
    scalacOptions ++= Seq("-feature", "-deprecation"),
    crossScalaVersions := Seq("2.12.4", "2.11.11", "2.10.6"),
    scalaVersion := crossScalaVersions.value.head
  )

}