Fixing repositories...

This commit is contained in:
Mark Harrah 2009-12-05 11:02:41 -05:00
parent 04ae140d12
commit 4902c3f1b3
2 changed files with 6 additions and 1 deletions

View File

@ -4,6 +4,7 @@
import sbt._
import java.io.File
import java.net.URL
class SbtProject(info: ProjectInfo) extends DefaultProject(info) with test.SbtScripted
{
@ -15,7 +16,8 @@ class SbtProject(info: ProjectInfo) extends DefaultProject(info) with test.SbtSc
override def normalizedName = "sbt"
override def managedStyle = ManagedStyle.Ivy
val publishTo = Resolver.file("technically", new File("/var/dbwww/repo/"))
//val publishTo = Resolver.file("technically", new File("/var/dbwww/repo/"))
val technically = Resolver.url("technically.us", new URL("http://databinder.net/repo/"))(Resolver.ivyStylePatterns)
override def compileOptions = Nil

View File

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