Skip to content

Commit 2c6ae28

Browse files
committed
Rename common-sbom module to common-maven.
1 parent 04ff345 commit 2c6ae28

File tree

26 files changed

+27
-27
lines changed

26 files changed

+27
-27
lines changed

java-components/build-recipes-database/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</dependency>
2020
<dependency>
2121
<groupId>io.github.redhat-appstudio.jvmbuild</groupId>
22-
<artifactId>common-sbom</artifactId>
22+
<artifactId>common-maven</artifactId>
2323
</dependency>
2424
<dependency>
2525
<groupId>org.apache.httpcomponents</groupId>

java-components/build-recipes-database/src/main/java/com/redhat/hacbs/recipes/location/RecipeGroupManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import org.jboss.logging.Logger;
1111

12-
import com.redhat.hacbs.common.sbom.GAV;
12+
import com.redhat.hacbs.common.maven.GAV;
1313
import com.redhat.hacbs.recipes.BuildRecipe;
1414

1515
/**

java-components/build-recipes-database/src/main/java/com/redhat/hacbs/recipes/scm/AbstractPomScmLocator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import org.apache.maven.model.Scm;
1313
import org.jboss.logging.Logger;
1414

15-
import com.redhat.hacbs.common.sbom.GAV;
15+
import com.redhat.hacbs.common.maven.GAV;
1616

1717
public abstract class AbstractPomScmLocator implements ScmLocator {
1818

java-components/build-recipes-database/src/main/java/com/redhat/hacbs/recipes/scm/GitScmLocator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import org.eclipse.jgit.lib.Ref;
2222
import org.jboss.logging.Logger;
2323

24-
import com.redhat.hacbs.common.sbom.GAV;
24+
import com.redhat.hacbs.common.maven.GAV;
2525
import com.redhat.hacbs.recipes.BuildRecipe;
2626
import com.redhat.hacbs.recipes.location.RecipeDirectory;
2727
import com.redhat.hacbs.recipes.location.RecipeGroupManager;

java-components/build-recipes-database/src/main/java/com/redhat/hacbs/recipes/scm/ScmLocator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.redhat.hacbs.recipes.scm;
22

3-
import com.redhat.hacbs.common.sbom.GAV;
3+
import com.redhat.hacbs.common.maven.GAV;
44

55
public interface ScmLocator {
66

java-components/build-recipes-database/src/test/java/com/redhat/hacbs/recipes/location/RecipeGroupManagerAddTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import org.junit.jupiter.api.Test;
1111
import org.yaml.snakeyaml.Yaml;
1212

13-
import com.redhat.hacbs.common.sbom.GAV;
13+
import com.redhat.hacbs.common.maven.GAV;
1414
import com.redhat.hacbs.recipes.BuildRecipe;
1515
import com.redhat.hacbs.recipes.scm.ScmInfo;
1616

java-components/build-recipes-database/src/test/java/com/redhat/hacbs/recipes/location/RecipeGroupManagerMultipleTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import org.junit.jupiter.api.BeforeAll;
1010
import org.junit.jupiter.api.Test;
1111

12-
import com.redhat.hacbs.common.sbom.GAV;
12+
import com.redhat.hacbs.common.maven.GAV;
1313
import com.redhat.hacbs.recipes.BuildRecipe;
1414
import com.redhat.hacbs.recipes.scm.ScmInfo;
1515

java-components/build-recipes-database/src/test/java/com/redhat/hacbs/recipes/location/RecipeGroupManagerSingleTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import org.junit.jupiter.api.BeforeAll;
1212
import org.junit.jupiter.api.Test;
1313

14-
import com.redhat.hacbs.common.sbom.GAV;
14+
import com.redhat.hacbs.common.maven.GAV;
1515
import com.redhat.hacbs.recipes.BuildRecipe;
1616
import com.redhat.hacbs.recipes.build.BuildRecipeInfo;
1717
import com.redhat.hacbs.recipes.scm.ScmInfo;

java-components/build-recipes-database/src/test/java/com/redhat/hacbs/recipes/scm/GitScmLocatorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import org.junit.jupiter.api.Assertions;
88
import org.junit.jupiter.api.Test;
99

10-
import com.redhat.hacbs.common.sbom.GAV;
10+
import com.redhat.hacbs.common.maven.GAV;
1111

1212
class GitScmLocatorTest {
1313

java-components/build-request-processor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</dependency>
2828
<dependency>
2929
<groupId>io.github.redhat-appstudio.jvmbuild</groupId>
30-
<artifactId>common-sbom</artifactId>
30+
<artifactId>common-maven</artifactId>
3131
</dependency>
3232

3333
<dependency>

0 commit comments

Comments
 (0)