-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
30 lines (27 loc) · 858 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
29
30
organization := "io.github.jeremyrsmith"
name := "mima-cli"
version := "0.1.0"
scalaVersion := "2.13.8"
publishTo := sonatypePublishToBundle.value
licenses := Seq("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
homepage := Some(url("https://github.com/jeremyrsmith/mima-cli"))
scmInfo := Some(ScmInfo(
url("https://github.com/jeremyrsmith/mima-cli"),
"scm:git:[email protected]:jeremyrsmith/mima-cli.git"))
pomExtra := {
<developers>
<developer>
<id>jeremyrsmith</id>
<name>Jeremy Smith</name>
<url>https://github.com/jeremyrsmith</url>
</developer>
</developers>
}
libraryDependencies ++= Seq(
"com.typesafe" %% "mima-core" % "1.1.0"
)
scalacOptions ++= Seq(
"-deprecation"
)
import sbtassembly.AssemblyPlugin.defaultShellScript
ThisBuild / assemblyPrependShellScript := Some(defaultShellScript)