-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
37 lines (27 loc) · 952 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
29
30
31
32
33
34
35
36
37
name := """factory_hedgehog"""
organization := "com.jamesneve"
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
javacOptions ++= Seq("-source", "1.6", "-target", "1.6")
scalaVersion := "2.11.7"
crossScalaVersions := Seq("2.10.4", "2.11.7")
libraryDependencies ++= Seq(
"org.scalatestplus" %% "play" % "1.4.0-M3",
"org.scalatest" %% "scalatest" % "2.2.1"
)
import bintray.Keys._
lazy val commonSettings = Seq(
version := "1.1.1",
organization := "com.jamesneve"
)
lazy val root = (project in file(".")).
settings(commonSettings ++ bintrayPublishSettings: _*).
settings(
sbtPlugin := true,
name := "Factory Hedgehog",
description := "Factory hedgehog for Play 2.4",
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html")),
publishMavenStyle := false,
repository := "sbt-plugins",
bintrayOrganization in bintray := None
)
com.typesafe.sbt.SbtGit.versionWithGit