1.6.0
license check
sbt-license-report 1.6.0 adds licenseCheck. If you want to check that only certain licenses are used in a project, you can use:
 > licenseCheck
This ensures all licenses fall into one of the categories given by licenseCheckAllow which defaults
to a set of commonly allowed OSS licenses. You can opt-out of artifacts from the licenseCheck as follows:
// Want to exclude any artifact named icu4j from the license check, but keep it in the reports.
licenseCheckExclusions := {
  case DepModuleInfo(_, "icu4j", _) => true
}This feature was contributed by @ybasket in #74 / #76
other updates
- Adds Unicode license (ICU) by @ybasket in #75
 - Adds APL2 license alias by @mdedetrich in #77
 - Adds JSON license by @mdedetrich in #80
 - Adds Go license as a BSD license by @mdedetrich in #79
 - Adds EDL into BSD license category by @mdedetrich in #78
 - Adds IBM International Program License Agreement by @mdedetrich in #82
 
new contributors
Full Changelog: v1.5.0...v1.6.0