-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
27 lines (17 loc) · 862 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
name := "hw1"
version := "0.1"
scalaVersion := "2.13.1"
mainClass in(Compile, run) := Some("com.DePaCoG")
mainClass in(Compile, packageBin) := Some("com.DePaCoG")
assemblyMergeStrategy in assembly := {
case PathList("META-INF", xs @ _*) => MergeStrategy.discard
case x => MergeStrategy.last
}
assemblyOption in assembly := (assemblyOption in assembly).value.copy(cacheOutput = false)
////// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3"
libraryDependencies += "org.junit.jupiter" % "junit-jupiter-api" % "5.6.0" % Test
// https://mvnrepository.com/artifact/com.squareup/javapoet
libraryDependencies += "com.squareup" % "javapoet" % "1.12.1"
// https://mvnrepository.com/artifact/com.typesafe/config
libraryDependencies += "com.typesafe" % "config" % "1.4.0"