mirror of https://github.com/sbt/sbt.git
Fix
This commit is contained in:
parent
22b41317d2
commit
cdf60562f7
|
|
@ -6,10 +6,10 @@ object ToSbt {
|
|||
|
||||
def artifact(module: Module, artifact: Artifact): sbt.Artifact =
|
||||
sbt.Artifact(
|
||||
s"${module.organization}:${module.name}",
|
||||
module.name,
|
||||
artifact.attributes.`type`,
|
||||
"jar",
|
||||
Some(artifact.attributes.classifier),
|
||||
Some(artifact.attributes.classifier).filter(_.nonEmpty),
|
||||
Nil,
|
||||
Some(url(artifact.url)),
|
||||
Map.empty
|
||||
|
|
|
|||
Loading…
Reference in New Issue