-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
28 lines (18 loc) · 873 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
import _root_.sbt.Keys._
organization := "org.scorexfoundation"
name := "statsCollector"
version := "0.1.0"
scalaVersion := "2.12.2"
val circeVersion = "0.+"
libraryDependencies ++= Seq(
"org.scalaj" %% "scalaj-http" % "2.3+",
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion
)
licenses := Seq("CC0" -> url("https://creativecommons.org/publicdomain/zero/1.0/legalcode"))
homepage := Some(url("https://github.com/ScorexProject/statsCollector"))
resolvers ++= Seq("Sonatype Releases" at "https://oss.sonatype.org/content/repositories/releases/",
"SonaType" at "https://oss.sonatype.org/content/groups/public",
"Typesafe maven releases" at "http://repo.typesafe.com/typesafe/maven-releases/")
mainClass in assembly := Some("org.scorexfoundation.twinschain.LogAnalyzer")