Skip to content

Commit

Permalink
Merge pull request #67 from raboof/update-group-and-artifact-id
Browse files Browse the repository at this point in the history
Update group and artifact ids
  • Loading branch information
raboof authored Oct 18, 2024
2 parents f3cf51c + 0d5f537 commit 28bdfe0
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# sbt-bom
# sbt-sbom

*sbt bom.xml exporter*
*sbt SBOM exporter*

The aim of this [project](https://siculo.github.io/sbt-bom/) is to:
The aim of this [project](https://github.com/sbt/sbt-sbom/) is to:

- extract a valid [CycloneDx](https://cyclonedx.org/) bom file from [sbt](https://www.scala-sbt.org/) projects
- ensure that the bom file is processable with Software Composition Analysis tools (like [Dependency Track](https://dependencytrack.org/))
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ThisBuild / description := Project.description
lazy val root = (project in file("."))
.enablePlugins(ScriptedPlugin)
.settings(
name := "sbt-bom",
name := "sbt-sbom",
sbtPlugin := true,
libraryDependencies ++= Dependencies.library,
scriptedLaunchOpts := {
Expand Down
6 changes: 3 additions & 3 deletions project/Organization.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sbt.url

object Organization {
val organization: String = "io.github.siculo"
val organizationName: String = "Siculo"
val organizationHomepage: Option[sbt.URL] = Some(url("https://github.com/siculo"))
val organization: String = "com.github.sbt"
val organizationName: String = "sbt"
val organizationHomepage: Option[sbt.URL] = Some(url("https://www.scala-sbt.org/"))
}
2 changes: 1 addition & 1 deletion src/sbt-test/bomfile/bomname/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
sys.props.get("plugin.organization")
) match {
case (Some(version), Some(organization)) =>
addSbtPlugin(organization % "sbt-bom" % version)
addSbtPlugin(organization % "sbt-sbom" % version)
case (None, _) =>
sys.error(
"""|The system property 'plugin.version' is not defined.
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/bomfile/exists/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
sys.props.get("plugin.organization")
) match {
case (Some(version), Some(organization)) =>
addSbtPlugin(organization % "sbt-bom" % version)
addSbtPlugin(organization % "sbt-sbom" % version)
case (None, _) =>
sys.error(
"""|The system property 'plugin.version' is not defined.
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/dependencies/compile/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
sys.props.get("plugin.organization")
) match {
case (Some(version), Some(organization)) =>
addSbtPlugin(organization % "sbt-bom" % version)
addSbtPlugin(organization % "sbt-sbom" % version)
case (None, _) =>
sys.error(
"""|The system property 'plugin.version' is not defined.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
sys.props.get("plugin.organization")
) match {
case (Some(version), Some(organization)) =>
addSbtPlugin(organization % "sbt-bom" % version)
addSbtPlugin(organization % "sbt-sbom" % version)
case (None, _) =>
sys.error(
"""|The system property 'plugin.version' is not defined.
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/dependencies/test/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
sys.props.get("plugin.organization")
) match {
case (Some(version), Some(organization)) =>
addSbtPlugin(organization % "sbt-bom" % version)
addSbtPlugin(organization % "sbt-sbom" % version)
case (None, _) =>
sys.error(
"""|The system property 'plugin.version' is not defined.
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/schemaVersion/unsupported/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
sys.props.get("plugin.organization")
) match {
case (Some(version), Some(organization)) =>
addSbtPlugin(organization % "sbt-bom" % version)
addSbtPlugin(organization % "sbt-sbom" % version)
case (None, _) =>
sys.error(
"""|The system property 'plugin.version' is not defined.
Expand Down

0 comments on commit 28bdfe0

Please sign in to comment.