sbt/build.sbt

20 lines
759 B
Scala

ThisBuild / organization := "com.eed3si9n"
ThisBuild / version := "0.5.3-SNAPSHOT"
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,
)