paths cleanup

This commit is contained in:
Mark Harrah 2010-09-04 08:11:36 -04:00
parent 22f319588c
commit 6378107317
1 changed files with 0 additions and 7 deletions

View File

@ -102,7 +102,6 @@ trait BasicScalaPaths extends Project with ScalaPaths
override def outputDirectories = outputPath :: managedDependencyPath :: Nil
}
@deprecated trait BasicProjectPaths extends MavenStyleScalaPaths
trait MavenStyleScalaPaths extends BasicScalaPaths with BasicPackagePaths
{
import BasicProjectPaths._
@ -196,11 +195,6 @@ object BasicProjectPaths
val DefaultJavaDirectoryName = "java"
val DefaultResourcesDirectoryName = "resources"
val DefaultTestDirectoryName = "test"
// forwarders to new locations
def BootDirectoryName = Project.BootDirectoryName
def DefaultManagedDirectoryName = BasicDependencyPaths.DefaultManagedDirectoryName
def DefaultDependencyDirectoryName = BasicDependencyPaths.DefaultDependencyDirectoryName
}
trait WebScalaPaths extends ScalaPaths
@ -210,7 +204,6 @@ trait WebScalaPaths extends ScalaPaths
def jettyContextPath: String
def warPath: Path
}
@deprecated trait WebProjectPaths extends MavenStyleWebScalaPaths
trait MavenStyleWebScalaPaths extends WebScalaPaths with MavenStyleScalaPaths
{
import WebProjectPaths._