Make it easy to publish jars
This commit is contained in:
parent
aa25559900
commit
4e42cf017e
1 changed files with 5 additions and 2 deletions
|
@ -26,7 +26,8 @@ object Build extends sbt.Build {
|
|||
project(
|
||||
id = "runtime",
|
||||
base = file("runtime")
|
||||
)
|
||||
).settings(publishArtifact := true)
|
||||
.settings(crossPaths := false) // disable outputting the _<scala-version> suffix
|
||||
|
||||
lazy val examples =
|
||||
project(
|
||||
|
@ -107,7 +108,9 @@ object Shared {
|
|||
),
|
||||
resolvers += Resolver.sonatypeRepo("snapshots"),
|
||||
resolvers += Resolver.sonatypeRepo("releases"),
|
||||
shellPrompt := ShellPrompt.buildShellPrompt
|
||||
shellPrompt := ShellPrompt.buildShellPrompt,
|
||||
organization := "org.capnproto",
|
||||
publishArtifact := false
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue