-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
33 lines (26 loc) · 1.51 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
name := "bio-tp"
version := "1.0"
scalaVersion := "2.12.2"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
resolvers += Classpaths.typesafeSnapshots
resolvers += "Typesafe Maven Snapshots" at "http://repo.typesafe.com/typesafe/snapshots/"
resolvers += "Typesafe Maven Releases" at "http://repo.typesafe.com/typesafe/releases/"
resolvers += "Sonatype OSS Releases" at "https://oss.sonatype.org/content/repositories/releases"
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
libraryDependencies ++= {
val scalaTestV = "3.0.1"
Seq(
"com.typesafe" % "config" % "1.3.1",
"org.slf4j" % "slf4j-api" % "1.7.13",
"ch.qos.logback" % "logback-core" % "1.1.3",
"ch.qos.logback" % "logback-classic" % "1.1.3",
"org.scalatest" %% "scalatest" % scalaTestV % "test",
"org.biojava" % "biojava-core" % "4.2.7"
excludeAll ExclusionRule(organization = "org.apache.logging.log4j"),
"org.biojava" % "biojava-ws" % "4.2.7"
exclude ("commons-beanutils", "commons-beanutils")
excludeAll ExclusionRule(organization = "org.apache.logging.log4j"),
"com.github.scopt" %% "scopt" % "3.5.0"
)
}
Assembly.settings