mirror of https://github.com/sbt/sbt.git
version bumps
This commit is contained in:
parent
43be49ba3d
commit
3907dc36da
|
|
@ -1,6 +1,6 @@
|
||||||
project.name=extract
|
project.name=extract
|
||||||
project.organization=org.scala-tools.sbt
|
project.organization=org.scala-tools.sbt
|
||||||
project.version=0.3.0
|
project.version=0.3.0
|
||||||
sbt.version=0.6.13
|
sbt.version=0.7.0
|
||||||
def.scala.version=2.7.7
|
def.scala.version=2.7.7
|
||||||
build.scala.versions=2.7.7
|
build.scala.versions=2.7.7
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
project.name=Simple Build Tool
|
project.name=Simple Build Tool
|
||||||
project.organization=org.scala-tools.sbt
|
project.organization=org.scala-tools.sbt
|
||||||
project.version=0.7.0
|
project.version=0.7.1-SNAPSHOT
|
||||||
sbt.version=0.6.13
|
sbt.version=0.7.0
|
||||||
def.scala.version=2.7.7
|
def.scala.version=2.7.7
|
||||||
build.scala.versions=2.7.7
|
build.scala.versions=2.7.7
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import sbt._
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.net.URL
|
import java.net.URL
|
||||||
|
|
||||||
class SbtProject(info: ProjectInfo) extends DefaultProject(info) //with test.SbtScripted with posterous.Publish
|
class SbtProject(info: ProjectInfo) extends DefaultProject(info) with test.SbtScripted //with posterous.Publish
|
||||||
{
|
{
|
||||||
/* Additional resources to include in the produced jar.*/
|
/* Additional resources to include in the produced jar.*/
|
||||||
def extraResources = descendents(info.projectPath / "licenses", "*") +++ "LICENSE" +++ "NOTICE"
|
def extraResources = descendents(info.projectPath / "licenses", "*") +++ "LICENSE" +++ "NOTICE"
|
||||||
|
|
@ -24,9 +24,9 @@ class SbtProject(info: ProjectInfo) extends DefaultProject(info) //with test.Sbt
|
||||||
/** 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 false.
|
// The output of scripted tasks executed in parallel will be inteleaved if false.
|
||||||
//override def scriptedBufferLog = true
|
override def scriptedBufferLog = true
|
||||||
// Configure which versions of Scala to test against for those tests that do cross building
|
// Configure which versions of Scala to test against for those tests that do cross building
|
||||||
//override def scriptedCompatibility = sbt.test.CompatibilityLevel.Minimal
|
override def scriptedCompatibility = sbt.test.CompatibilityLevel.Minimal
|
||||||
|
|
||||||
override def useDefaultConfigurations = false
|
override def useDefaultConfigurations = false
|
||||||
val default = Configurations.Default
|
val default = Configurations.Default
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ 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.7.0-SNAPSHOT"
|
val scripted = "org.scala-tools.sbt" % "scripted" % "0.7.0"
|
||||||
// val posterous = "net.databinder" % "posterous-sbt" % "0.1.0-SNAPSHOT"
|
// val posterous = "net.databinder" % "posterous-sbt" % "0.1.0-SNAPSHOT"
|
||||||
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)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
project.name=scripted
|
project.name=scripted
|
||||||
project.organization=org.scala-tools.sbt
|
project.organization=org.scala-tools.sbt
|
||||||
project.version=0.7.0
|
project.version=0.7.1-SNAPSHOT
|
||||||
sbt.version=0.7.0
|
sbt.version=0.7.0
|
||||||
def.scala.version=2.7.7
|
def.scala.version=2.7.7
|
||||||
build.scala.versions=2.7.7
|
build.scala.versions=2.7.7
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue