Skip to content

Commit

Permalink
post-release bumps and changes
Browse files Browse the repository at this point in the history
  • Loading branch information
harrah committed May 17, 2010
1 parent ad9cd40 commit 5e8e72a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
4 changes: 2 additions & 2 deletions project/build.properties
@@ -1,5 +1,5 @@
project.organization=org.scala-tools.sbt
project.name=xsbt
sbt.version=0.7.3
project.version=0.7.4
sbt.version=0.7.4
project.version=0.7.5-SNAPSHOT
build.scala.versions=2.7.7
6 changes: 3 additions & 3 deletions project/build/SbtProject.scala
Expand Up @@ -6,7 +6,7 @@ import sbt._
import java.io.File
import java.net.URL

abstract class SbtProject(info: ProjectInfo) extends DefaultProject(info) with test.SbtScripted with posterous.Publish// with Sxr
abstract class SbtProject(info: ProjectInfo) extends DefaultProject(info) with test.SbtScripted with posterous.Publish with Sxr
{
/* Additional resources to include in the produced jar.*/
def extraResources = descendents(info.projectPath / "licenses", "*") +++ "LICENSE" +++ "NOTICE"
Expand All @@ -26,7 +26,7 @@ abstract class SbtProject(info: ProjectInfo) extends DefaultProject(info) with t
// The output of scripted tasks executed in parallel will be inteleaved if false.
override def scriptedBufferLog = true
// Configure which versions of Scala to test against for those tests that do cross building
override def scriptedCompatibility = sbt.test.CompatibilityLevel.Minimal
override def scriptedBuildVersions = "2.7.7 2.7.5 2.7.2 2.8.0.RC2 2.8.0.Beta1"

override def useDefaultConfigurations = false
val default = Configurations.Default
Expand Down Expand Up @@ -58,7 +58,7 @@ abstract class SbtProject(info: ProjectInfo) extends DefaultProject(info) with t
lazy val sbtDoc = packageTask(mainDocPath ##, packageDocsJar, Recursive) dependsOn(sbtGenDoc)
lazy val sbtSrc = packageTask(deepSources, packageSrcJar, packageOptions) dependsOn(compile)

override def packageToPublishActions = super.packageToPublishActions //++ Seq(sbtSrc, sbtDoc) //sxr
override def packageToPublishActions = super.packageToPublishActions //++ Seq(sbtSrc, sbtDoc, sxr)

override def packageDocsJar = defaultJarPath("-javadoc.jar")
override def packageSrcJar= defaultJarPath("-sources.jar")
Expand Down
5 changes: 2 additions & 3 deletions project/build/Sxr.scala
Expand Up @@ -17,9 +17,8 @@ trait Sxr extends BasicScalaProject
lazy val sxr = task {
xsbt.FileUtilities.delete(sxrOutput +++ sxrClassesOutput getFiles)
xsbt.FileUtilities.createDirectory(sxrClassesOutput asFile)
val compiler = new xsbt.RawCompiler(buildScalaInstance, true, true, log)
// `Set() ++` is temporary. getFiles returns immutable.Set in sbt 0.7.3.
compiler(Set() ++ deepSources.getFiles, Set() ++ compileClasspath.getFiles, sxrClassesOutput asFile, sxrOptions)
val compiler = new xsbt.RawCompiler(buildScalaInstance, xsbt.ClasspathOptions.auto, log)
compiler(deepSources.getFiles, compileClasspath.getFiles, sxrClassesOutput asFile, sxrOptions)
None
}
}
2 changes: 1 addition & 1 deletion project/plugins/Plugins.scala
Expand Up @@ -4,7 +4,7 @@ import java.net.URL

class Plugins(info: ProjectInfo) extends PluginDefinition(info)
{
val scripted = "org.scala-tools.sbt" % "scripted" % "0.7.0"
val scripted = "org.scala-tools.sbt" % "scripted" % "0.7.4"
val t_repo = "t_repo" at "http://tristanhunt.com:8081/content/groups/public/"
val posterous = "net.databinder" % "posterous-sbt" % "0.1.4"
val technically = Resolver.url("technically.us", new URL("http://databinder.net/repo/"))(Resolver.ivyStylePatterns)
Expand Down
1 change: 0 additions & 1 deletion sbt/install/project/build.properties

This file was deleted.

0 comments on commit 5e8e72a

Please sign in to comment.