Added test repository to publish to.

This commit is contained in:
Mark Harrah 2009-10-23 22:04:15 -04:00
parent 9feda977bf
commit dc7da2dc98
2 changed files with 4 additions and 0 deletions

View File

@ -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

View File

@ -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
{