Skip to content

Commit

Permalink
Merge pull request #82 from mdedetrich/add-ibm-license
Browse files Browse the repository at this point in the history
Add IBM license
  • Loading branch information
eed3si9n authored Jul 28, 2023
2 parents 7cedca9 + 9ff9c97 commit 7f1995f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/scala/sbtlicensereport/SbtLicenseReport.scala
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ object SbtLicenseReport extends AutoPlugin {
LicenseCategory.Mozilla,
LicenseCategory.PublicDomain,
LicenseCategory.JSON,
LicenseCategory.Unicode
LicenseCategory.Unicode,
LicenseCategory.IBM_IPLA
),
licenseCheckExclusions := PartialFunction.empty
)
Expand Down
2 changes: 2 additions & 0 deletions src/main/scala/sbtlicensereport/license/LicenseCategory.scala
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ object LicenseCategory {
val CDDL = LicenseCategory("CDDL", Seq("Common Development and Distribution"))
val BouncyCastle = LicenseCategory("Bouncy Castle License", Seq("Bouncy Castle"))
val Unicode = LicenseCategory("Unicode/ICU License", Seq("Unicode", "ICU"))
val IBM_IPLA = LicenseCategory("IBM International Program License Agreement")
val JSON = LicenseCategory("JSON", Seq("The JSON License"))
val Proprietary = LicenseCategory("Proprietary")
val NoneSpecified = LicenseCategory("none specified")
Expand All @@ -53,6 +54,7 @@ object LicenseCategory {
CDDL,
BouncyCastle,
Unicode,
IBM_IPLA,
JSON,
Proprietary
)
Expand Down
5 changes: 5 additions & 0 deletions src/main/scala/sbtlicensereport/license/LicenseInfo.scala
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,9 @@ object LicenseInfo {
LicenseInfo(LicenseCategory.JSON, "The JSON License", "https://json.org/license.html")
val Go =
LicenseInfo(LicenseCategory.BSD, "The Go License", "https://golang.org/LICENSE")
val IBM_IPLA = LicenseInfo(
LicenseCategory.IBM_IPLA,
"IBM International Program License Agreement",
"https://www.ibm.com/support/customer/csol/terms/?id=i125-3301&lc=en#detail-document"
)
}

0 comments on commit 7f1995f

Please sign in to comment.