fixup (Better handling of classifiers)

This commit is contained in:
Alexandre Archambault 2015-12-30 01:34:36 +01:00
parent d5d28a0615
commit c3cc002be2
1 changed files with 5 additions and 1 deletions

View File

@ -246,7 +246,11 @@ case class MavenRepository(
proj <- Pom.project(xml)
} yield proj.copy(
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)
}
}