mirror of https://github.com/sbt/sbt.git
63 lines
1.6 KiB
Scala
63 lines
1.6 KiB
Scala
/* sbt -- Simple Build Tool
|
|
* Copyright 2009,2010 Mark Harrah
|
|
*/
|
|
package sbt
|
|
package impl
|
|
|
|
import StringUtilities.{appendable,nonEmpty}
|
|
|
|
trait DependencyBuilders
|
|
{
|
|
final implicit def toGroupID(groupID: String): GroupID =
|
|
{
|
|
nonEmpty(groupID, "Group ID")
|
|
new GroupID(groupID)
|
|
}
|
|
final implicit def toRepositoryName(name: String): RepositoryName =
|
|
{
|
|
nonEmpty(name, "Repository name")
|
|
new RepositoryName(name)
|
|
}
|
|
final implicit def moduleIDConfigurable(m: ModuleID): ModuleIDConfigurable =
|
|
{
|
|
require(m.configurations.isEmpty, "Configurations already specified for module " + m)
|
|
new ModuleIDConfigurable(m)
|
|
}
|
|
}
|
|
|
|
final class GroupID private[sbt] (groupID: String)
|
|
{
|
|
def % (artifactID: String) = groupArtifact(artifactID, false)
|
|
def %% (artifactID: String) = groupArtifact(artifactID, true)
|
|
private def groupArtifact(artifactID: String, cross: Boolean) =
|
|
{
|
|
nonEmpty(artifactID, "Artifact ID")
|
|
new GroupArtifactID(groupID, artifactID, cross)
|
|
}
|
|
}
|
|
final class GroupArtifactID private[sbt] (groupID: String, artifactID: String, crossVersion: Boolean)
|
|
{
|
|
def % (revision: String): ModuleID =
|
|
{
|
|
nonEmpty(revision, "Revision")
|
|
ModuleID(groupID, artifactID, revision).cross(crossVersion)
|
|
}
|
|
}
|
|
final class ModuleIDConfigurable private[sbt] (moduleID: ModuleID)
|
|
{
|
|
def % (configurations: String): ModuleID =
|
|
{
|
|
nonEmpty(configurations, "Configurations")
|
|
val c = configurations
|
|
moduleID.copy(configurations = Some(c))
|
|
}
|
|
}
|
|
final class RepositoryName private[sbt] (name: String)
|
|
{
|
|
def at (location: String) =
|
|
{
|
|
nonEmpty(location, "Repository location")
|
|
new MavenRepository(name, location)
|
|
}
|
|
}
|