Correct repositories for publishing

This commit is contained in:
Mark Harrah 2009-12-05 10:44:29 -05:00
parent 5fd4ec6fa4
commit 24464ccbe7
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ class SbtProject(info: ProjectInfo) extends DefaultProject(info) with test.SbtSc
override def normalizedName = "sbt"
override def managedStyle = ManagedStyle.Ivy
val publishTo = Resolver.file("test-repo", (Path.userHome / ".ivy2" / "test").asFile)
val publishTo = Resolver.file("technically", new File("/var/dbwww/repo/"))
override def compileOptions = Nil

View File

@ -7,7 +7,7 @@ import sbt._
class SbtTest(info: ProjectInfo) extends PluginProject(info)
{
val xsbtTest = "org.scala-tools.sbt" %% "test" % version.toString
val publishTo = "Scala Tools Nexus" at "http://nexus.scala-tools.org/content/repositories/releases/"
Credentials(Path.fromFile(System.getProperty("user.home")) / ".ivy2" / ".credentials", log)
override def managedStyle = ManagedStyle.Ivy
val publishTo = Resolver.file("technically", new File("/var/dbwww/repo/"))
}