-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
executable file
·23 lines (21 loc) · 792 Bytes
/
build.sbt
File metadata and controls
executable file
·23 lines (21 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import bintray.Keys._
lazy val commonSettings = Seq(
version in ThisBuild := "0.2.0",
organization in ThisBuild := "me.rschatz",
libraryDependencies in ThisBuild ++= Seq(
"ch.qos.logback" % "logback-classic" % "1.1.3",
"org.scalatest" %% "scalatest" % "2.2.5" % "test",
"org.mockito" % "mockito-core" % "1.10.19" % "test"
)
)
lazy val root = (project in file(".")).
settings(commonSettings ++ bintrayPublishSettings: _*).
settings(
sbtPlugin := true,
name := "npt",
description := "Create new project layouts which can be based on templates",
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html")),
publishMavenStyle := false,
repository in bintray := "sbt-plugins",
bintrayOrganization in bintray := None
)