This repository was archived by the owner on Feb 28, 2021. It is now read-only.
forked from goneflyin/sbt-appengine-plugin
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathbuild.sbt
More file actions
49 lines (29 loc) · 1.25 KB
/
build.sbt
File metadata and controls
49 lines (29 loc) · 1.25 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
sbtPlugin := true
crossSbtVersions := Seq("1.0.4", "0.13.18")
name := "sbt-appengine"
organization := "com.eed3si9n"
version := "0.8.2-SNAPSHOT"
description := "sbt plugin to deploy on appengine"
licenses := Seq("MIT License" -> url("https://github.com/sbt/sbt-appengine/blob/master/LICENSE"))
libraryDependencies += Defaults.sbtPluginExtra(
"com.earldouglas" % "xsbt-web-plugin" % "4.2.1",
(sbtBinaryVersion in pluginCrossBuild).value,
(scalaBinaryVersion in pluginCrossBuild).value
)
libraryDependencies += Defaults.sbtPluginExtra(
"io.spray" % "sbt-revolver" % "0.9.1",
(sbtBinaryVersion in pluginCrossBuild).value,
(scalaBinaryVersion in pluginCrossBuild).value
)
scalacOptions := Seq("-deprecation", "-unchecked")
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
publishArtifact in (Compile, packageBin) := true
publishArtifact in (Test, packageBin) := false
publishArtifact in (Compile, packageDoc) := false
publishArtifact in (Compile, packageSrc) := false
resolvers += "spray repo" at "http://repo.spray.cc"
publishMavenStyle := false
credentials += Credentials(Path.userHome / ".ivy2" / ".sbtcredentials")
bintrayRepository := "sbt-plugin-releases"
bintrayOrganization := Some("sbt")
bintrayPackage := "sbt-appengine"