sbt/build.sbt

20 lines
759 B
Plaintext
Raw Normal View History

2018-06-24 04:35:09 +02:00
ThisBuild / organization := "com.eed3si9n"
2020-05-05 23:42:33 +02:00
ThisBuild / version := "0.5.3-SNAPSHOT"
2018-06-24 04:35:09 +02:00
ThisBuild / description := "sbt plugin to define project matrix for cross building"
ThisBuild / licenses := Seq("MIT License" -> url("https://github.com/sbt/sbt-projectmatrix/blob/master/LICENSE"))
lazy val root = (project in file("."))
.enablePlugins(SbtPlugin)
.settings(
sbtPlugin := true,
name := "sbt-projectmatrix",
scalacOptions := Seq("-deprecation", "-unchecked"),
publishMavenStyle := false,
bintrayOrganization in bintray := None,
bintrayRepository := "sbt-plugins",
scriptedLaunchOpts := { scriptedLaunchOpts.value ++
Seq("-Xmx1024M", "-Dplugin.version=" + version.value)
},
scriptedBufferLog := false,
)