mirror of https://github.com/sbt/sbt.git
Fixing repositories...
This commit is contained in:
parent
04ae140d12
commit
4902c3f1b3
|
|
@ -4,6 +4,7 @@
|
||||||
import sbt._
|
import sbt._
|
||||||
|
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
import java.net.URL
|
||||||
|
|
||||||
class SbtProject(info: ProjectInfo) extends DefaultProject(info) with test.SbtScripted
|
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 normalizedName = "sbt"
|
||||||
|
|
||||||
override def managedStyle = ManagedStyle.Ivy
|
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
|
override def compileOptions = Nil
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,9 @@
|
||||||
import sbt._
|
import sbt._
|
||||||
|
|
||||||
|
import java.net.URL
|
||||||
|
|
||||||
class Plugins(info: ProjectInfo) extends PluginDefinition(info)
|
class Plugins(info: ProjectInfo) extends PluginDefinition(info)
|
||||||
{
|
{
|
||||||
val scripted = "org.scala-tools.sbt" % "test" % "0.6.5"
|
val scripted = "org.scala-tools.sbt" % "test" % "0.6.5"
|
||||||
|
val technically = Resolver.url("technically.us", new URL("http://databinder.net/repo/"))(Resolver.ivyStylePatterns)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue