-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
executable file
·29 lines (22 loc) · 908 Bytes
/
build.sbt
File metadata and controls
executable file
·29 lines (22 loc) · 908 Bytes
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
import Dependencies._
import sbtassembly.AssemblyPlugin.defaultUniversalScript
ThisBuild / scalaVersion := "2.13.0"
ThisBuild / version := "1.0.0"
ThisBuild / organization := "fr.igpolytech"
ThisBuild / organizationName := "igpolytech"
lazy val root = (project in file("."))
.settings(
name := "sgit",
libraryDependencies += scalaTest % Test,
libraryDependencies += "com.github.scopt" %% "scopt" % "4.0.0-RC2",
libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.2.0"
)
scalacOptions ++= Seq(
"-Xlint:unused",
"-deprecation"
)
assemblyOption in assembly := (assemblyOption in assembly).value
.copy(prependShellScript = Some(defaultUniversalScript(shebang = false)))
assemblyJarName in assembly := s"${name.value}"
parallelExecution in Test := false
// See https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html for instructions on how to publish to Sonatype.