Skip to content

Commit

Permalink
Added cross building with Scala 2.9.1.RC2.
Browse files Browse the repository at this point in the history
  • Loading branch information
rickynils committed Aug 14, 2011
1 parent 091cc2a commit f6791e3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ organization := "org.scala-tools.testing"

scalaVersion := "2.9.0-1"

crossScalaVersions := Seq("2.9.0-1", "2.9.1.RC2")

libraryDependencies += "org.scala-tools.testing" % "test-interface" % "0.5"

javacOptions ++= Seq("-Xmx1024M")

scalacOptions += "-deprecation"

// publishTo := Some("Scala Tools Nexus" at "http://nexus.scala-tools.org/content/repositories/snapshots/")
publishTo := Some("Scala Tools Nexus" at "http://nexus.scala-tools.org/content/repositories/snapshots/")

publishTo := Some("Scala Tools Nexus" at "http://nexus.scala-tools.org/content/repositories/releases/")
// publishTo := Some("Scala Tools Nexus" at "http://nexus.scala-tools.org/content/repositories/releases/")

credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
2 changes: 1 addition & 1 deletion sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh

java $SBT_OPTS -Xmx1024M -jar `dirname $0`/tools/sbt-launch-0.10.1.jar "$@"
java $SBT_OPTS -Xmx1024M -XX:MaxPermSize=512m -jar `dirname $0`/tools/sbt-launch-0.10.1.jar "$@"

0 comments on commit f6791e3

Please sign in to comment.