Skip to content

Commit

Permalink
Add Go as BSD license
Browse files Browse the repository at this point in the history
  • Loading branch information
mdedetrich committed Jul 28, 2023
1 parent 2ac0f04 commit 372be6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ case class LicenseCategory(name: String, synonyms: Seq[String] = Nil) {

}
object LicenseCategory {
val BSD = LicenseCategory("BSD")
val BSD = LicenseCategory("BSD", Seq("Go"))
val Apache = LicenseCategory("Apache", Seq("asf", "ALv2", "APL2"))
val LGPL = LicenseCategory("LGPL", Seq("lesser general public license"))
object GPLClasspath extends LicenseCategory("GPL with Classpath Extension") {
Expand Down
2 changes: 2 additions & 0 deletions src/main/scala/sbtlicensereport/license/LicenseInfo.scala
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,6 @@ object LicenseInfo {
val MPL = LicenseInfo(LicenseCategory.Mozilla, "Mozilla Public License 2.0", "https://www.mozilla.org/MPL/2.0/")
val BouncyCastle =
LicenseInfo(LicenseCategory.BouncyCastle, "Bouncy Castle Licence", "https://www.bouncycastle.org/license.html")
val Go =
LicenseInfo(LicenseCategory.BSD, "Go License", "https://go.dev/LICENSE")
}

0 comments on commit 372be6d

Please sign in to comment.