Skip to content

Commit d5ea02b

Browse files
reid-spencerclaude
andcommitted
Fix default orgName to "Ossum Inc." (remove comma)
The official corporate name is "Ossum Inc." without a comma. Updated the default orgName parameter in Root.scala, RootProjectInfo.scala, and two sbt-test build files. Also fixed a typo "Ossumin" in the program test. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e263afb commit d5ea02b

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/scala/com/ossuminc/sbt/Root.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ object Root {
3636
ghRepoName: String = "",
3737
ghOrgName: String = "ossuminc",
3838
orgPackage: String = "com.ossuminc",
39-
orgName: String = "Ossum, Inc.",
39+
orgName: String = "Ossum Inc.",
4040
orgPage: URL = url("https://ossuminc.com/"),
4141
startYr: Int = 2023,
4242
devs: List[Developer] = List.empty,

src/main/scala/com/ossuminc/sbt/helpers/RootProjectInfo.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ object RootProjectInfo {
9595
ghOrgName: String = "ossuminc",
9696
startYr: Int = Calendar.getInstance().get(Calendar.YEAR),
9797
orgPackage: String = "com.ossuminc",
98-
orgName: String = "Ossum, Inc.",
98+
orgName: String = "Ossum Inc.",
9999
orgPage: URL = url("https://ossuminc.com/"),
100100
devs: List[Developer] = defaultDevs,
101101
spdxLicenseName: String = "Apache-2.0"

src/sbt-test/sbt-ossuminc/docker-dual/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ lazy val root = Root(
77
ghRepoName = "docker-dual-test",
88
ghOrgName = "ossuminc",
99
orgPackage = "com.ossuminc",
10-
orgName = "Ossum, Inc.",
10+
orgName = "Ossum Inc.",
1111
orgPage = url("https://ossuminc.com/"),
1212
startYr = 2026,
1313
devs = List(Developer("reid-spencer", "Reid Spencer", "", url("https://github.com/reid-spencer")))

src/sbt-test/sbt-ossuminc/program/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ lazy val root = Root(
77
ghRepoName = "program-test",
88
ghOrgName = "ossuminc",
99
orgPackage = "com.ossuminc",
10-
orgName = "Ossumin, Inc.",
10+
orgName = "Ossum Inc.",
1111
orgPage = url("https://ossuminc.com/"),
1212
startYr = 2024,
1313
devs = List(Developer("reid-spencer", "Reid Spencer", "", url("https://github.com/reid-spencer")))

0 commit comments

Comments
 (0)