Skip to content

Commit db2bdba

Browse files
committed
chore: move package to io.github.guacsec.trustifyda
1 parent eea4aa7 commit db2bdba

83 files changed

Lines changed: 301 additions & 300 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ module x { // module-info.java
133133
Code example
134134

135135
```java
136-
import com.redhat.exhort.Api.MixedReport;
137-
import com.redhat.exhort.impl.ExhortApi;
138-
import com.redhat.exhort.AnalysisReport;
136+
import io.github.guacsec.trustifyda.Api.MixedReport;
137+
import io.github.guacsec.trustifyda.impl.ExhortApi;
138+
import io.github.guacsec.trustifyda.AnalysisReport;
139139
import java.nio.file.Files;
140140
import java.nio.file.Paths;
141141
import java.util.concurrent.CompletableFuture;
@@ -621,11 +621,11 @@ Generate vulnerability analysis report for container images.
621621

622622
#### Code Example
623623
```java
624-
package com.redhat.exhort;
624+
package io.github.guacsec.trustifyda;
625625

626-
import com.redhat.exhort.api.AnalysisReport;
627-
import com.redhat.exhort.image.ImageRef;
628-
import com.redhat.exhort.impl.ExhortApi;
626+
import io.github.guacsec.trustifyda.api.AnalysisReport;
627+
import io.github.guacsec.trustifyda.image.ImageRef;
628+
import io.github.guacsec.trustifyda.impl.ExhortApi;
629629

630630
import java.util.Map;
631631
import java.util.Set;

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -407,11 +407,11 @@ limitations under the License.]]>
407407
<excludes>
408408
<exclude>com/redhat/exhort/api/*</exclude>
409409
<exclude>com/redhat/exhort/api/serialization/*</exclude>
410-
<exclude>com/redhat/exhort/exception/*</exclude>
410+
<exclude>io/github/guacsec/trustifyda/exception/*</exclude>
411411
<!-- This one excluding ExhortApi implementation calss from coverage report as it's not tested by surefire plugin, but with junit-platform-maven-plugin -->
412-
<exclude>com/redhat/exhort/impl/*</exclude>
413-
<exclude>com/redhat/exhort/logging/*</exclude>
414-
<exclude>com/redhat/exhort/image/ImageUtils.class</exclude>
412+
<exclude>io/github/guacsec/trustifyda/impl/*</exclude>
413+
<exclude>io/github/guacsec/trustifyda/logging/*</exclude>
414+
<exclude>io/github/guacsec/trustifyda/image/ImageUtils.class</exclude>
415415

416416
</excludes>
417417
<propertyName>jacoco.java.option</propertyName>
@@ -664,7 +664,7 @@ limitations under the License.]]>
664664
<configuration>
665665
<archive>
666666
<manifest>
667-
<mainClass>com.redhat.exhort.cli.App</mainClass>
667+
<mainClass>io.github.guacsec.trustifyda.cli.App</mainClass>
668668
</manifest>
669669
</archive>
670670
</configuration>
@@ -704,7 +704,7 @@ limitations under the License.]]>
704704
<transformers>
705705
<!-- Main class transformer -->
706706
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
707-
<mainClass>com.redhat.exhort.cli.App</mainClass>
707+
<mainClass>io.github.guacsec.trustifyda.cli.App</mainClass>
708708
</transformer>
709709

710710
<!-- Service files transformer for Jackson and other services -->

src/main/java/com/redhat/exhort/sbom/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main/java/com/redhat/exhort/Api.java renamed to src/main/java/io/github/guacsec/trustifyda/Api.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package com.redhat.exhort;
17+
package io.github.guacsec.trustifyda;
1818

1919
import com.redhat.exhort.api.v4.AnalysisReport;
20-
import com.redhat.exhort.image.ImageRef;
20+
import io.github.guacsec.trustifyda.image.ImageRef;
2121
import java.io.IOException;
2222
import java.util.Arrays;
2323
import java.util.Map;

src/main/java/com/redhat/exhort/Provider.java renamed to src/main/java/io/github/guacsec/trustifyda/Provider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package com.redhat.exhort;
17+
package io.github.guacsec.trustifyda;
1818

1919
import com.fasterxml.jackson.databind.ObjectMapper;
20-
import com.redhat.exhort.tools.Ecosystem;
20+
import io.github.guacsec.trustifyda.tools.Ecosystem;
2121
import java.io.IOException;
2222
import java.nio.file.Path;
2323

src/main/java/com/redhat/exhort/cli/App.java renamed to src/main/java/io/github/guacsec/trustifyda/cli/App.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package com.redhat.exhort.cli;
17+
package io.github.guacsec.trustifyda.cli;
1818

19-
import static com.redhat.exhort.cli.AppUtils.exitWithError;
20-
import static com.redhat.exhort.cli.AppUtils.printException;
21-
import static com.redhat.exhort.cli.AppUtils.printLine;
19+
import static io.github.guacsec.trustifyda.cli.AppUtils.exitWithError;
20+
import static io.github.guacsec.trustifyda.cli.AppUtils.printException;
21+
import static io.github.guacsec.trustifyda.cli.AppUtils.printLine;
2222

2323
import com.fasterxml.jackson.annotation.JsonInclude;
2424
import com.fasterxml.jackson.core.JsonProcessingException;
2525
import com.fasterxml.jackson.databind.ObjectMapper;
26-
import com.redhat.exhort.Api;
2726
import com.redhat.exhort.api.v4.AnalysisReport;
2827
import com.redhat.exhort.api.v4.ProviderReport;
2928
import com.redhat.exhort.api.v4.SourceSummary;
30-
import com.redhat.exhort.impl.ExhortApi;
29+
import io.github.guacsec.trustifyda.Api;
30+
import io.github.guacsec.trustifyda.impl.ExhortApi;
3131
import java.io.IOException;
3232
import java.nio.file.Files;
3333
import java.nio.file.Path;

src/main/java/com/redhat/exhort/cli/AppUtils.java renamed to src/main/java/io/github/guacsec/trustifyda/cli/AppUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package com.redhat.exhort.cli;
17+
package io.github.guacsec.trustifyda.cli;
1818

1919
public class AppUtils {
2020
public static void exitWithError() {

src/main/java/com/redhat/exhort/cli/CliArgs.java renamed to src/main/java/io/github/guacsec/trustifyda/cli/CliArgs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package com.redhat.exhort.cli;
17+
package io.github.guacsec.trustifyda.cli;
1818

1919
import java.nio.file.Path;
2020

src/main/java/com/redhat/exhort/cli/Command.java renamed to src/main/java/io/github/guacsec/trustifyda/cli/Command.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package com.redhat.exhort.cli;
17+
package io.github.guacsec.trustifyda.cli;
1818

1919
public enum Command {
2020
STACK,

src/main/java/com/redhat/exhort/cli/OutputFormat.java renamed to src/main/java/io/github/guacsec/trustifyda/cli/OutputFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package com.redhat.exhort.cli;
17+
package io.github.guacsec.trustifyda.cli;
1818

1919
public enum OutputFormat {
2020
JSON,

0 commit comments

Comments
 (0)