forked from reactive-streams/reactive-streams-jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
33 lines (23 loc) · 987 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
organization in ThisBuild := "org.reactivestreams"
version in ThisBuild := "0.4.0"
scalaVersion in ThisBuild := "2.10.3"
licenses in ThisBuild := Seq("CC0" -> url("http://creativecommons.org/publicdomain/zero/1.0/"))
homepage in ThisBuild := Some(url("http://www.reactive-streams.org/"))
publishTo in ThisBuild := Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
lazy val api = project
lazy val tck = project.dependsOn(api)
publishArtifact := false // for this aggregate project
EclipseKeys.projectFlavor in ThisBuild := EclipseProjectFlavor.Java
pomExtra in ThisBuild := (
<scm>
<url>[email protected]:reactive-streams/reactive-streams.git</url>
<connection>scm:git:[email protected]:reactive-streams/reactive-streams.git</connection>
</scm>
<developers>
<developer>
<id>reactive-streams-sig</id>
<name>Reactive Streams SIG</name>
<url>http://www.reactive-streams.org/</url>
</developer>
</developers>
)