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 =
|
def artifact(module: Module, artifact: Artifact): sbt.Artifact =
|
||||||
sbt.Artifact(
|
sbt.Artifact(
|
||||||
s"${module.organization}:${module.name}",
|
module.name,
|
||||||
artifact.attributes.`type`,
|
artifact.attributes.`type`,
|
||||||
"jar",
|
"jar",
|
||||||
Some(artifact.attributes.classifier),
|
Some(artifact.attributes.classifier).filter(_.nonEmpty),
|
||||||
Nil,
|
Nil,
|
||||||
Some(url(artifact.url)),
|
Some(url(artifact.url)),
|
||||||
Map.empty
|
Map.empty
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue