From 4e42cf017e4b779c293109a93a939a5ddcc447b3 Mon Sep 17 00:00:00 2001 From: Evan Chan Date: Mon, 5 Jan 2015 13:30:54 -0800 Subject: [PATCH] Make it easy to publish jars --- project/build.scala | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/project/build.scala b/project/build.scala index 5dbd2c5..91a0783 100644 --- a/project/build.scala +++ b/project/build.scala @@ -26,7 +26,8 @@ object Build extends sbt.Build { project( id = "runtime", base = file("runtime") - ) + ).settings(publishArtifact := true) + .settings(crossPaths := false) // disable outputting the _ 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 ) }