File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 1
1
import sbt .Keys ._
2
- import sbtassembly .MergeStrategy
3
- import sbtassembly .PathList
4
2
5
3
ThisBuild / version := " 0.1.0-SNAPSHOT"
6
4
ThisBuild / scalaVersion := " 2.13.12"
@@ -11,18 +9,14 @@ lazy val commonSettings = Seq(
11
9
)
12
10
13
11
lazy val root = (project in file(" ." ))
12
+ .enablePlugins(GraalVMNativeImagePlugin )
14
13
.settings(
15
14
name := " jindo" ,
16
15
commonSettings,
17
16
libraryDependencies ++= Seq (
18
17
" io.circe" %% " circe-yaml" % " 0.14.2" ,
19
18
" io.circe" %% " circe-generic" % " 0.14.2" ,
20
19
" io.get-coursier" %% " coursier" % " 2.1.7" ,
21
- " com.github.scopt" %% " scopt" % " 4.1.0" ,
22
- ),
23
- assembly / assemblyJarName := " jindo.jar" ,
24
- assembly / assemblyMergeStrategy := {
25
- case PathList (" META-INF" , xs @ _* ) => MergeStrategy .discard
26
- case _ => MergeStrategy .first
27
- }
20
+ " com.github.scopt" %% " scopt" % " 4.1.0"
21
+ )
28
22
)
Original file line number Diff line number Diff line change 1
1
addSbtPlugin(" org.scalameta" % " sbt-scalafmt" % " 2.4.6" )
2
- addSbtPlugin(" com.eed3si9n " % " sbt-assembly " % " 2.3.1 " )
2
+ addSbtPlugin(" com.github.sbt " % " sbt-native-packager " % " 1.10.0 " )
You can’t perform that action at this time.
0 commit comments