Skip to content

Commit

Permalink
sbt 0.12 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Feb 22, 2013
1 parent 60d1349 commit c43b597
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions project/build.scala
Expand Up @@ -47,7 +47,7 @@ object Build extends sbt.Build {

/** core transformations from txt files to html slide formated html */
lazy val core = Project(
"PictureShow Core",
"PictureShow_Core",
file("core"),
settings = standardSettings ++ Seq(
libraryDependencies ++= Seq(codec, specs)
Expand All @@ -56,7 +56,7 @@ object Build extends sbt.Build {

/** serves generated html on a configurable port */
lazy val server = Project(
"PictureShow Server",
"PictureShow_Server",
file("server"),
settings = standardSettings ++ Seq(
libraryDependencies ++= Seq(uff, ufj)
Expand All @@ -66,15 +66,15 @@ object Build extends sbt.Build {

/** caches generated html to disk */
lazy val offln = Project(
"PictureShow Offline",
"PictureShow_Offline",
file("offline"),
settings = standardSettings,
dependencies = Seq(core)
)

/** command line client, pshow */
lazy val app = Project(
"PictureShow Conscript",
"PictureShow_Conscript",
file("conscript"),
settings = standardSettings ++ conscript.Harness.conscriptSettings,
dependencies = Seq(core, server, offln)
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
@@ -1,5 +1,5 @@
resolvers += Resolver.url("sbt-plugin-releases", new URL("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases/"))(Resolver.ivyStylePatterns)

addSbtPlugin("net.databinder" % "conscript-plugin" % "0.3.3")
addSbtPlugin("net.databinder" % "conscript-plugin" % "0.3.5")

addSbtPlugin("com.jsuereth" % "xsbt-gpg-plugin" % "0.6")

0 comments on commit c43b597

Please sign in to comment.