-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.sbt
51 lines (39 loc) · 1.18 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
51
name := "scala-frp"
organization := "io.dylemma"
version := "1.3"
crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.0")
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.0" % "test"
scalacOptions in Compile += "-deprecation"
scalacOptions in (Compile, doc) += "-implicits"
// publishing stuff below
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")
}
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
pomExtra := (
<url>https://github.com/dylemma/scala.frp</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:dylemma/scala.frp.git</url>
<connection>scm:git:[email protected]:dylemma/scala.frp.git</connection>
</scm>
<developers>
<developer>
<id>dylemma</id>
<name>Dylan Halperin</name>
<url>http://dylemma.io/</url>
</developer>
</developers>
)