fix ProjectResolver to properly ignore artifacts

This commit is contained in:
Mark Harrah 2011-02-08 20:32:11 -05:00
parent 2a4f7ac564
commit 4d6f6ca9f8
1 changed files with 1 additions and 6 deletions

View File

@ -42,12 +42,7 @@ class ProjectResolver(name: String, map: Map[ModuleRevisionId, ModuleDescriptor]
def exists(artifact: IArtifact) = false
def locate(artifact: IArtifact) = null
def download(artifacts: Array[IArtifact], options: DownloadOptions): DownloadReport =
{
val r = new DownloadReport
for(artifact <- artifacts)
r addArtifactReport notDownloaded(artifact)
r
}
new DownloadReport
def download(artifact: ArtifactOrigin, options: DownloadOptions): ArtifactDownloadReport =
notDownloaded(artifact.getArtifact)
def findIvyFileRef(dd: DependencyDescriptor, data: ResolveData) = null