Skip to content

1.6.0

Compare
Choose a tag to compare
@eed3si9n eed3si9n released this 29 Jul 17:34
· 108 commits to main since this release
v1.6.0
21ec415

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

new contributors

Full Changelog: v1.5.0...v1.6.0