forked from qvantel/sbt-buildnumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
55 lines (36 loc) · 946 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
sbtPlugin := true
name := "buildnumber"
organization := "fi.onesto.sbt"
description := "VCS build number plugin for SBT"
startYear := Some(2013)
homepage := Some(url("https://github.com/onesto/sbt-buildnumber"))
publishTo := Some(Classpaths.sbtPluginReleases)
publishMavenStyle := false
publishArtifact in Test := false
scalaVersion := "2.10.4"
sbtVersion := "0.13.1"
net.virtualvoid.sbt.graph.Plugin.graphSettings
testOptions in Test += Tests.Argument("-oD")
javacOptions in ThisBuild ++= Seq(
"-deprecation",
"-g",
"-source", "7",
"-Xlint")
scalacOptions in ThisBuild ++= Seq(
"-unchecked",
"-deprecation",
"-feature",
//"-explaintypes",
//"-optimise",
"-target:jvm-1.7",
//"-Xcheck-null",
"-Xcheckinit",
"-Xlint",
"-Yclosure-elim",
"-Ydead-code",
"-Yinline",
"-Yinline-handlers",
"-Ywarn-all",
"-Xlog-reflective-calls",
"-Xmax-classfile-name", "130" // avoid problems on eCryptFS
)