-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (20 loc) · 904 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name := """sbt-scripted-ext"""
organization := "nz.co.bottech"
version := "0.1-SNAPSHOT"
sbtPlugin := true
// choose a test framework
// utest
//libraryDependencies += "com.lihaoyi" %% "utest" % "0.4.8" % "test"
//testFrameworks += new TestFramework("utest.runner.Framework")
// ScalaTest
//libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.1" % "test"
//libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % "test"
// Specs2
//libraryDependencies ++= Seq("org.specs2" %% "specs2-core" % "3.9.1" % "test")
//scalacOptions in Test ++= Seq("-Yrangepos")
bintrayPackageLabels := Seq("sbt","plugin")
bintrayVcsUrl := Some("""[email protected]:nz.co.bottech/sbt-scripted-ext.git""")
initialCommands in console := """import nz.co.bottech.sbt._"""
// set up 'scripted; sbt plugin for testing sbt plugins
scriptedLaunchOpts ++=
Seq("-Xmx1024M", "-Dplugin.version=" + version.value)