-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
50 lines (34 loc) · 1.14 KB
/
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
organization := "org.duh"
name := "scala-resource-simple"
version := "0.4-SNAPSHOT"
scalaVersion := "2.11.5"
crossScalaVersions := Seq("2.11.5", "2.10.4")
scalacOptions in ThisBuild ++= Seq("-feature", "-optimise", "-deprecation", "-target:jvm-1.6")
site.settings
site.includeScaladoc()
ghpages.settings
git.remoteRepo := "[email protected]:tvierling/scala-resource-simple.git"
licenses := Seq("Unlicense" -> url("http://unlicense.org/"))
homepage := Some(url("http://tvierling.github.io/scala-resource-simple"))
usePgpKeyHex("c97da2c45fc249fd")
useGpg := true
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
pomExtra := (
<scm>
<url>[email protected]:tvierling/scala-resource-simple.git</url>
<connection>scm:git:[email protected]:tvierling/scala-resource-simple.git</connection>
</scm>
<developers>
<developer>
<id>tvierling</id>
<name>Todd Vierling</name>
<url>http://www.duh.org/</url>
</developer>
</developers>)