mirror of https://github.com/sbt/sbt.git
7 lines
355 B
Plaintext
7 lines
355 B
Plaintext
|
|
sys.props.get("plugin.version") match {
|
||
|
|
case Some(x) => addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % x)
|
||
|
|
case _ => sys.error("""|The system property 'plugin.version' is not defined.
|
||
|
|
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
|
||
|
|
}
|
||
|
|
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.3.9")
|