Skip to content

Commit

Permalink
Bump versions, use org.scala-sbt organization to be able to publish t…
Browse files Browse the repository at this point in the history
…o central
  • Loading branch information
harrah committed Jul 8, 2013
1 parent d088394 commit cb7d480
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions project/SBinaryProject.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ object SBinaryProject extends Build
lazy val treeExample = Project("examples", file("examples") / "bt") settings( aux("SBinary Tree Example") : _*) dependsOn(core)

lazy val commonSettings: Seq[Setting[_]] = Seq(
organization := "org.scala-tools.sbinary",
version := "0.4.1",
scalaVersion := "2.10.0"
organization := "org.scala-sbt",
version := "0.4.2-SNAPSHOT",
scalaVersion := "2.10.2"
)

lazy val scalaCheck = libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.10.0" % "test"
Expand All @@ -36,11 +36,11 @@ object SBinaryProject extends Build
)

def fmppConfig(c: Configuration): Seq[Setting[_]] = inConfig(c)(Seq(
sourceGenerators <+= fmpp.identity,
sourceGenerators <+= fmpp.task,
fmpp <<= fmppTask,
scalaSource <<= (baseDirectory, configuration) { (base,c) => base / (Defaults.prefix(c.name) + "src") },
mappings in packageSrc <<= (managedSources, sourceManaged) map { (srcs, base) => srcs x relativeTo(base) },
sources <<= managedSources.identity
sources := managedSources.value
))
lazy val fmppTask =
(fullClasspath in fmppConfig, runner in fmpp, unmanagedSources, scalaSource, sourceManaged, fmppOptions, streams) map { (cp, r, sources, srcRoot, output, args, s) =>
Expand Down
1 change: 1 addition & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sbt.version=0.13.0-RC1

0 comments on commit cb7d480

Please sign in to comment.