-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
84 lines (62 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
sbtPlugin := true
sbtVersion := "1.1.0"
organization := "com.objectnirvana.sbt"
name := "sbt-tunnel"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.12.4"
crossScalaVersions := Seq("2.11.11", "2.12.4")
val circeVersion = "0.9.1"
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser"
).map(_ % circeVersion)
libraryDependencies ++= Seq("org.specs2" %% "specs2-core" % "4.0.2" % "test")
val latestJson4sVersion = "3.5.3"
val json4sNative = "org.json4s" %% "json4s-native" % latestJson4sVersion
libraryDependencies += json4sNative
scalacOptions in Test ++= Seq("-Yrangepos")
resolvers += Resolver.sonatypeRepo("releases")
libraryDependencies ++= Seq(
// "org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided"
"ch.qos.logback" % "logback-classic" % "1.1.3",
"org.slf4j" % "slf4j-api" % "1.7.25"
//"com.typesafe.scala-logging" %% "scala-logging-slf4j" % "3.5.0"
)
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.4"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % "test"
val AkkaVersion = "2.5.8"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % AkkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion,
"com.typesafe.akka" %% "akka-stream" % AkkaVersion,
"com.typesafe.akka" %% "akka-typed" % AkkaVersion,
"com.lightbend.akka" %% "akka-stream-alpakka-file" % "0.16"
)
//testFrameworks += new TestFramework("utest.runner.Framework")
//unmanagedSourceDirectories in Test += baseDirectory(_ / "src" / "test" / "resources").value
// Sonatype
publishArtifact in Test := false
publishTo := version { (v: String) =>
Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
}.value
pomExtra := (
<url>https://github.com/ObjectNirvana/sbt-tunnel</url>
<licenses>
<license>
<name>MIT license</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<scm>
<url>git://github.com/ObjectNirvana/sbt-tunnel.git</url>
<connection>scm:git://github.com/ObjectNirvana/sbt-tunnel.git</connection>
</scm>
<developers>
<developer>
<id>michaeldmccray</id>
<name>Michael McCray</name>
<url>https://github.com/MichaelDMcCray</url>
</developer>
</developers>
)