From dc7da2dc983e0a4f8f50e75d1a10ea87ea7bb779 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Fri, 23 Oct 2009 22:04:15 -0400 Subject: [PATCH] Added test repository to publish to. --- launch/src/main/resources/sbt/sbt.boot.properties | 1 + project/build/XSbt.scala | 3 +++ 2 files changed, 4 insertions(+) diff --git a/launch/src/main/resources/sbt/sbt.boot.properties b/launch/src/main/resources/sbt/sbt.boot.properties index 839cad2b7..3d851e343 100644 --- a/launch/src/main/resources/sbt/sbt.boot.properties +++ b/launch/src/main/resources/sbt/sbt.boot.properties @@ -12,6 +12,7 @@ [repositories] local maven-local + sbt: file:///home/mark/.ivy2/test/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext] maven-central scala-tools-releases scala-tools-snapshots diff --git a/project/build/XSbt.scala b/project/build/XSbt.scala index 75038e013..faa938049 100644 --- a/project/build/XSbt.scala +++ b/project/build/XSbt.scala @@ -57,6 +57,9 @@ class XSbt(info: ProjectInfo) extends ParentProject(info) //run in parallel override def parallelExecution = true + override def managedStyle = ManagedStyle.Ivy + val publishTo = Resolver.file("test-repo", (Path.userHome / ".ivy2" / "test").asFile) + /* Subproject configurations*/ class LaunchProject(info: ProjectInfo) extends Base(info) with TestWithIO with TestDependencies with ProguardLaunch {