0.6.7 for publishing

This commit is contained in:
Mark Harrah 2009-12-12 08:38:35 -05:00
parent e899f51c5a
commit 0120326160
5 changed files with 10 additions and 12 deletions

View File

@ -3,5 +3,5 @@
project.organization=org.scala-tools.sbt project.organization=org.scala-tools.sbt
project.name=Simple Build Tool project.name=Simple Build Tool
sbt.version=0.5.6 sbt.version=0.5.6
project.version=0.6.6 project.version=0.6.7
scala.version=2.7.7 scala.version=2.7.7

View File

@ -20,7 +20,7 @@ class SbtProject(info: ProjectInfo) extends DefaultProject(info) with test.SbtSc
val technically = Resolver.url("technically.us", new URL("http://databinder.net/repo/"))(Resolver.ivyStylePatterns) val technically = Resolver.url("technically.us", new URL("http://databinder.net/repo/"))(Resolver.ivyStylePatterns)
override def compileOptions = Nil override def compileOptions = Nil
/** configuration of scripted testing **/ /** configuration of scripted testing **/
// Set to false to show logging as it happens without buffering, true to buffer until it completes and only show if the task fails. // Set to false to show logging as it happens without buffering, true to buffer until it completes and only show if the task fails.
// The output of scripted tasks executed in parallel will be inteleaved if true. // The output of scripted tasks executed in parallel will be inteleaved if true.
@ -43,12 +43,12 @@ class SbtProject(info: ProjectInfo) extends DefaultProject(info) with test.SbtSc
val provided = Configurations.Provided val provided = Configurations.Provided
/* Versions of Scala to cross-build against. */ /* Versions of Scala to cross-build against. */
private val Version2_7_5 = "2.7.5" private val Version2_7_7 = "2.7.7"
private val Version2_8_0 = "2.8.0-20090929.004247-+" private val Version2_8_0 = "2.8.0-SNAPSHOT"
// the list of all supported versions // the list of all supported versions
private def allVersions = Version2_7_5 :: Version2_8_0 :: Nil private def allVersions = Version2_7_7 :: Version2_8_0 :: Nil
override def crossScalaVersions = Set(Version2_7_5) override def crossScalaVersions = Set(Version2_7_7)
//testing //testing
val scalacheck = "org.scala-tools.testing" %% "scalacheck" % "1.6" val scalacheck = "org.scala-tools.testing" %% "scalacheck" % "1.6"

View File

@ -4,6 +4,6 @@ import java.net.URL
class Plugins(info: ProjectInfo) extends PluginDefinition(info) class Plugins(info: ProjectInfo) extends PluginDefinition(info)
{ {
val scripted = "org.scala-tools.sbt" % "scripted" % "0.6.6" val scripted = "org.scala-tools.sbt" % "scripted" % "0.6.7"
val technically = Resolver.url("technically.us", new URL("http://databinder.net/repo/"))(Resolver.ivyStylePatterns) val technically = Resolver.url("technically.us", new URL("http://databinder.net/repo/"))(Resolver.ivyStylePatterns)
} }

View File

@ -1,8 +1,6 @@
#Project properties
#Sat Aug 01 10:32:20 EDT 2009
project.organization=org.scala-tools.sbt project.organization=org.scala-tools.sbt
project.name=scripted project.name=scripted
sbt.version=0.5.6 sbt.version=0.5.6
project.version=0.6.6 project.version=0.6.7
scala.version=2.7.7 scala.version=2.7.7
project.initialize=false project.initialize=false

View File

@ -374,8 +374,8 @@ abstract class AbstractCompileConditional(val config: AbstractCompileConfigurati
{ {
if(jars.size > 1) if(jars.size > 1)
{ {
log.warn("Possible duplicate classpath locations for jar " + name + ": ") log.debug("Possible duplicate classpath locations for jar " + name + ": ")
for(jar <- jars) log.warn("\t" + jar.absolutePath) for(jar <- jars) log.debug("\t" + jar.absolutePath)
} }
} }
} }