mirror of https://github.com/sbt/sbt.git
13 lines
340 B
Scala
13 lines
340 B
Scala
/* sbt -- Simple Build Tool
|
|
* Copyright 2009 Mark Harrah
|
|
*/
|
|
|
|
import sbt._
|
|
|
|
class SbtTest(info: ProjectInfo) extends PluginProject(info)
|
|
{
|
|
val xsbtTest = "org.scala-tools.sbt" %% "test" % version.toString
|
|
|
|
override def managedStyle = ManagedStyle.Ivy
|
|
val publishTo = Resolver.file("technically", new java.io.File("/var/dbwww/repo/"))
|
|
} |