-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.sbt
50 lines (39 loc) · 1.33 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
name := "digitalocean"
organization := "me.jeffshaw"
version := "6.2"
libraryDependencies ++= Seq(
"org.asynchttpclient" % "async-http-client" % "2.10.0",
"org.json4s" %% "json4s-native" % "3.6.6",
"com.typesafe" % "config" % "1.3.3" % "test",
"org.scalatest" %% "scalatest" % "3.0.8" % "test",
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.11.1" % "test",
"org.apache.logging.log4j" % "log4j-api" % "2.11.1" % "test",
"org.apache.logging.log4j" % "log4j-core" % "2.11.1" % "test"
)
scalaVersion := "2.13.0"
crossScalaVersions := Seq("2.12.8", "2.11.12", "2.10.7")
scalacOptions ++= Seq("-language:postfixOps")
mimaPreviousArtifacts := Set("me.jeffshaw" %% "digitalocean" % "6.1")
parallelExecution := false
licenses := Seq("Apache License, Version 2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
homepage := Some(url("https://github.com/shawjef3/digitalocean"))
pomExtra := (
<developers>
<developer>
<name>Jeff Shaw</name>
<id>shawjef3</id>
</developer>
<developer>
<name>bass3t</name>
<id>bass3t</id>
</developer>
<developer>
<name>flavienbert</name>
<id>flavienbert</id>
</developer>
</developers>
<scm>
<url>[email protected]:shawjef3/digitalocean.git</url>
<connection>scm:git:[email protected]:shawjef3/digitalocean.git</connection>
</scm>
)