When I run makePom
in sbt I get:
[warn] Skipped generating '<exclusion/>' for org.scalaz#*. Dependency exclusion should have both 'org' and 'module' to comply with Maven POM's schema.
[warn] Skipped generating '<exclusion/>' for com.jolbox#*. Dependency exclusion should have both 'org' and 'module' to comply with Maven POM's schema.
What's the easiest way to fix this problem so that the correct exclusions get generated?
The following does not work - it breaks the scalaz exclusion rule - I presume because scalaz 7 is composed of multiple jars:
ExclusionRule(organization = "org.scalaz", name="scalaz-core")
and
ExclusionRule(organization = "com.jolbox", name="bonecp")