mirror of https://github.com/sbt/sbt.git
fixup (Better handling of classifiers)
This commit is contained in:
parent
d5d28a0615
commit
c3cc002be2
|
|
@ -246,7 +246,11 @@ case class MavenRepository(
|
||||||
proj <- Pom.project(xml)
|
proj <- Pom.project(xml)
|
||||||
} yield proj.copy(
|
} yield proj.copy(
|
||||||
configurations = defaultConfigurations,
|
configurations = defaultConfigurations,
|
||||||
publications = ???
|
publications = Seq(
|
||||||
|
"compile" -> Publication(module.name, "jar", "jar", ""),
|
||||||
|
"docs" -> Publication(module.name, "doc", "jar", "javadoc"),
|
||||||
|
"sources" -> Publication(module.name, "src", "jar", "sources")
|
||||||
|
)
|
||||||
)): (String \/ Project)
|
)): (String \/ Project)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue