Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Go as BSD license #79

Merged
merged 1 commit into from
Jul 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -59,4 +59,6 @@ object LicenseInfo {
LicenseInfo(LicenseCategory.BouncyCastle, "Bouncy Castle Licence", "https://www.bouncycastle.org/license.html")
val JSON =
LicenseInfo(LicenseCategory.JSON, "The JSON License", "https://json.org/license.html")
val Go =
LicenseInfo(LicenseCategory.BSD, "The Go License", "https://golang.org/LICENSE")
}