forked from kifi/franz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
48 lines (34 loc) · 1.25 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
organization := "com.kifi"
name := "franz"
version := "0.3.16"
crossScalaVersions := Seq("2.10.4", "2.11.5", "2.12.4", "2.13.1")
scalaVersion := "2.13.1"
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
resolvers += "Typesafe Repo" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies += "com.amazonaws" % "aws-java-sdk-sqs" % "1.10.16"
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.7.4"
libraryDependencies += "com.typesafe.play" %% "play-streams" % "2.7.3"
publishMavenStyle := true
publishTo := Some("S3 Artifacts" at "s3://homebay-artifacts/ext-releases-local")
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
pomExtra := (
<url>https://github.com/FortyTwoEng/franz</url>
<licenses>
<license>
<name>MIT</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:FortyTwoEng/franz.git</url>
<connection>scm:git:[email protected]:FortyTwoEng/franz.git</connection>
</scm>
<developers>
<developer>
<id>stkem</id>
<name>Stephen Kemmerling</name>
<url>https://github.com/stkem</url>
</developer>
</developers>)