Skip to content
Snippets Groups Projects
Commit 10aa48fc authored by Richard Alam's avatar Richard Alam
Browse files

- do not publish doc and src when building jar

parent f9818a06
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,13 @@ publishMavenStyle := true
publishArtifact in Test := false
// http://www.scala-sbt.org/release/docs/Artifacts.html
// disable publishing the main API jar
publishArtifact in (Compile, packageDoc) := false
// disable publishing the main sources jar
publishArtifact in (Compile, packageSrc) := false
pomIncludeRepository := { _ => false }
pomExtra := (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment