Skip to content
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
@@ -1,3 +1,3 @@
package io.github.siculo.sbtbom
package com.github.sbt.sbom

class BomError(message: String) extends Exception(message)
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.siculo.sbtbom
package com.github.sbt.sbom

import com.github.packageurl.PackageURL
import org.cyclonedx.Version
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.siculo.sbtbom
package com.github.sbt.sbom

import org.cyclonedx.Version
import sbt.Configuration
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.github.siculo.sbtbom
package com.github.sbt.sbom

import io.github.siculo.sbtbom.PluginConstants._
import com.github.sbt.sbom.PluginConstants._
import org.cyclonedx.model.Component
import sbt.Keys.{ artifact, configuration, packagedArtifacts, version }
import sbt.{ Def, _ }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.github.siculo.sbtbom
package com.github.sbt.sbom

import io.github.siculo.sbtbom.BomSbtPlugin.autoImport._
import com.github.sbt.sbom.BomSbtPlugin.autoImport._
import sbt.Keys.{ sLog, target }
import sbt._

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.github.siculo.sbtbom
package com.github.sbt.sbom

import io.github.siculo.sbtbom.PluginConstants._
import com.github.sbt.sbom.PluginConstants._
import org.apache.commons.io.FileUtils
import org.cyclonedx.Version
import org.cyclonedx.generators.BomGeneratorFactory
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.siculo.sbtbom
package com.github.sbt.sbom

class ListBomTask(properties: BomTaskProperties) extends BomTask[String](properties) {
override def execute: String = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.siculo.sbtbom
package com.github.sbt.sbom

import sbt._

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.siculo.sbtbom
package com.github.sbt.sbom

import org.cyclonedx.Version

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package io.github.siculo.sbtbom.licenses
package com.github.sbt.sbom.licenses

case class License(id: Option[String] = None, name: Option[String] = None, references: Seq[String] = Seq())
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.siculo.sbtbom.licenses
package com.github.sbt.sbom.licenses

import scala.io.Source

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.siculo.sbtbom.licenses
package com.github.sbt.sbom.licenses

import scala.util.Try
import scala.xml.XML
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package io.github.siculo.sbtbom.model
package com.github.sbt.sbom.model

case class License(name: String, url: Option[String])
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.siculo.sbtbom.model
package com.github.sbt.sbom.model

import org.cyclonedx.model.Component.{ Scope, Type }

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package io.github.siculo.sbtbom
package com.github.sbt.sbom

import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec
import io.github.siculo.sbtbom.licenses.{ LicensesArchive, LicensesArchiveParser }
import com.github.sbt.sbom.licenses.{ LicensesArchive, LicensesArchiveParser }

class LicensesArchiveSpec extends AnyWordSpec with Matchers {
"LicensesArchiveParser" should {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.siculo.sbtbom
package com.github.sbt.sbom

import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec
Expand Down