This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
54 lines (43 loc) · 1.53 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
52
53
54
name := """nakadi-klients-play-json"""
version := "0.1.0"
organization := "org.zalando.nakadi.client"
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
"org.zalando.nakadi.client" % "nakadi-klients" % "2.0",
"com.typesafe.play" %% "play-json" % "2.5.8"
)
resolvers += "zalando-nexus-releases" at "https://maven.zalando.net/content/repositories/releases/"
resolvers += "zalando-nexus-snapshots" at "https://maven.zalando.net/content/repositories/snapshots/"
scalafmtConfig in ThisBuild := Some(file(".scalafmt.conf"))
publishMavenStyle := true
// Publish snapshots to a different repository
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/zalando-incubator/nakadi-klients-play-json</url>
<licenses>
<license>
<name>Apache 2</name>
<url>https://opensource.org/licenses/Apache-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/zalando-incubator/nakadi-klients-play-json</url>
<connection>scm:git:[email protected]:zalando-incubator/nakadi-klients-play-json.git</connection>
</scm>
<developers>
<developer>
<id>mdedetrich</id>
<name>Matthew de Detrich</name>
<email>[email protected]</email>
</developer>
</developers>