-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
55 lines (47 loc) · 1.61 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
import sbt.Test
//https://repo1.maven.org/maven2/com/github/p2m2/
scalaVersion := "2.13.12"
crossScalaVersions := List("2.13.12")
name := "stream-reader-mzxml"
organization := "com.github.p2m2"
scmInfo := Some(
ScmInfo(
url("https://github.com/p2m2/stream-reader-mzxml"),
"scm:[email protected]:p2m2/stream-reader-mzxml.git"
)
)
developers := List(
Developer("ofilangi", "Olivier Filangi", "[email protected]",url("https://github.com/ofilangi"))
)
licenses := Seq("MIT License" -> url("http://www.opensource.org/licenses/mit-license.php"))
homepage := Some(url("https://github.com/p2m2/stream-reader-mzxml"))
//scalacOptions += "-opt:inline,simplify-jumps,compact-locals,nullness-tracking"
/*
ThisBuild / scalacOptions ++= Seq(
"-release",
"8",
"-deprecation",
"-feature"
)
ThisBuild / compile / javacOptions ++= Seq(
"-g", // debug symbols
"--release",
"8"
)*/
libraryDependencies ++= Seq(
"com.github.scopt" %% "scopt" % "4.1.0",
"com.lucidchart" %% "xtract" % "2.3.0",
"co.fs2" %% "fs2-core" % "3.9.2",
"co.fs2" %% "fs2-io" % "3.9.2",
"co.fs2" %% "fs2-core" % "3.9.2",
"org.gnieh" %%"fs2-data-xml"%"1.8.0",
"com.github.marklister" %% "base64" % "0.3.0",
"com.github.nscala-time" %% "nscala-time" %"2.32.0",
"org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.4",
"org.typelevel" %% "cats-effect-testing-utest" % "1.5.0" % Test,
"com.lihaoyi" %% "utest" % "0.8.1" % Test,
)
testFrameworks += new TestFramework("utest.runner.Framework")
assembly / target := file("assembly")
assembly / assemblyJarName := "pack.jar"
Global / onChangedBuildSource := ReloadOnSourceChanges