We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06a2819 commit 0c2e372Copy full SHA for 0c2e372
build.sbt
@@ -33,9 +33,9 @@ assemblyJarName in assembly :=
33
assemblyOption in assembly :=
34
(assemblyOption in assembly).value.copy(includeScala = false)
35
36
-mappings in (Compile, packageBin) ++= Seq(
37
- (baseDirectory.value / "README.md") -> "README.md",
38
- (baseDirectory.value / "LICENSE.md") -> "LICENSE.md")
+unmanagedResources in Compile ++=
+ Seq("README.md", "LICENSE.md")
+ .map(baseDirectory.value / _)
39
40
pomExtra := (<scm>
41
<url>https://github.com/typesafehub/scala-sculpt.git</url>
0 commit comments