11# CodeReady Dependency Analytics Java API<br />![ latest-no-snapshot] [ 0 ] ![ latest-snapshot] [ 1 ]
22
3- * Looking for our JavaScript/TypeScript API? Try [ Exhort JavaScript API ] ( https://github.com/trustification/exhort- javascript-api ) .
4- * Looking for our Backend implementation? Try [ Exhort ] ( https://github.com/trustification/exhort ) .
3+ * Looking for our JavaScript/TypeScript API? Try [ Trustify DA JavaScript Client ] ( https://github.com/guacsec/trustify-da- javascript-client ) .
4+ * Looking for our Backend implementation? Try [ Trustify Dependency Analytics ] ( https://github.com/guacsec/trustify-dependency-analytics ) .
55
6- The _ Exhort Java API _ module is deployed to _ GitHub Package Registry_ .
6+ The _ Trustify DA Java Client _ module is deployed to _ GitHub Package Registry_ .
77
88<details >
99<summary >Click here for configuring <em >GHPR</em > registry access.</summary >
@@ -69,7 +69,7 @@ encrypted-token-will-appear-here
6969 ...
7070 <repository >
7171 <id >github</id >
72- <url >https://maven.pkg.github.com/trustification/exhort- java-api </url >
72+ <url >https://maven.pkg.github.com/guacsec/trustify-da- java-client </url >
7373 </repository >
7474 ...
7575 </repositories >
@@ -83,7 +83,7 @@ encrypted-token-will-appear-here
8383repositories {
8484 ...
8585 maven {
86- url 'https://maven.pkg.github.com/trustification/exhort- java-api '
86+ url 'https://maven.pkg.github.com/guacsec/trustify-da- java-client '
8787 credentials {
8888 username System.getenv("GITHUB_USERNAME")
8989 password System.getenv("GITHUB_TOKEN")
@@ -102,8 +102,8 @@ repositories {
102102
103103``` xml
104104<dependency >
105- <groupId >com.redhat.exhort </groupId >
106- <artifactId >exhort- java-api </artifactId >
105+ <groupId >io.github.guacsec </groupId >
106+ <artifactId >trustify-da- java-client </artifactId >
107107 <version >0.0.9-SNAPSHOT</version >
108108</dependency >
109109```
@@ -113,7 +113,7 @@ repositories {
113113<em >Gradle</em > users, add a dependency in <em >build.gradle</em >
114114
115115``` groovy
116- implementation 'com.redhat.exhort:exhort- java-api :${exhort- java-api .version}'
116+ implementation 'io.github.guacsec:trustify-da- java-client :${trustify-da- java-client .version}'
117117```
118118</li >
119119</ul >
@@ -124,7 +124,7 @@ If working with modules, configure module read
124124
125125``` java
126126module x { // module-info.java
127- requires com . redhat . exhort ;
127+ requires io . github . guacsec ;
128128}
129129```
130130</li >
@@ -311,7 +311,7 @@ All of the 5 above examples are valid for marking a package to be ignored
311311
312312<h3 >Customization</h3 >
313313<p >
314- There are 2 approaches for customizing <em >Exhort Java API </em >. Using <em >Environment Variables</em > or
314+ There are 2 approaches for customizing <em >Trustify DA Java Client </em >. Using <em >Environment Variables</em > or
315315<em >Java Properties</em >:
316316
317317``` java
@@ -561,20 +561,20 @@ mvn clean package
561561```
562562
563563This creates two JAR files in the ` target/ ` directory:
564- - ` exhort- java-api .jar` - Library JAR (for programmatic use)
565- - ` exhort- java-api -cli.jar` - CLI JAR (includes all dependencies)
564+ - ` trustify-da- java-client .jar` - Library JAR (for programmatic use)
565+ - ` trustify-da- java-client -cli.jar` - CLI JAR (includes all dependencies)
566566
567567#### Usage
568568
569569``` shell
570- java -jar target/exhort- java-api -cli.jar < COMMAND> < FILE_PATH> [OPTIONS]
570+ java -jar target/trustify-da- java-client -cli.jar < COMMAND> < FILE_PATH> [OPTIONS]
571571```
572572
573573#### Commands
574574
575575** Stack Analysis**
576576``` shell
577- java -jar exhort- java-api -cli.jar stack < file_path> [--summary| --html]
577+ java -jar trustify-da- java-client -cli.jar stack < file_path> [--summary| --html]
578578```
579579Perform stack analysis on the specified manifest file.
580580
@@ -585,7 +585,7 @@ Options:
585585
586586** Component Analysis**
587587``` shell
588- java -jar exhort- java-api -cli.jar component < file_path> [--summary]
588+ java -jar trustify-da- java-client -cli.jar component < file_path> [--summary]
589589```
590590Perform component analysis on the specified manifest file.
591591
@@ -597,22 +597,22 @@ Options:
597597
598598``` shell
599599# Stack analysis with JSON output (default)
600- java -jar exhort- java-api -cli.jar stack /path/to/pom.xml
600+ java -jar trustify-da- java-client -cli.jar stack /path/to/pom.xml
601601
602602# Stack analysis with summary
603- java -jar exhort- java-api -cli.jar stack /path/to/package.json --summary
603+ java -jar trustify-da- java-client -cli.jar stack /path/to/package.json --summary
604604
605605# Stack analysis with HTML output
606- java -jar exhort- java-api -cli.jar stack /path/to/build.gradle --html
606+ java -jar trustify-da- java-client -cli.jar stack /path/to/build.gradle --html
607607
608608# Component analysis with JSON output (default)
609- java -jar exhort- java-api -cli.jar component /path/to/requirements.txt
609+ java -jar trustify-da- java-client -cli.jar component /path/to/requirements.txt
610610
611611# Component analysis with summary
612- java -jar exhort- java-api -cli.jar component /path/to/go.mod --summary
612+ java -jar trustify-da- java-client -cli.jar component /path/to/go.mod --summary
613613
614614# Show help
615- java -jar exhort- java-api -cli.jar --help
615+ java -jar trustify-da- java-client -cli.jar --help
616616```
617617
618618### Image Support
@@ -694,5 +694,5 @@ Customize image analysis optionally by using *Environment Variables* or *Java Pr
694694
695695
696696<!-- Badge links -->
697- [ 0 ] : https://img.shields.io/github/v/release/trustification/exhort- java-api ?color=green&label=latest
698- [ 1 ] : https://img.shields.io/github/v/release/trustification/exhort- java-api ?color=yellow&include_prereleases&label=snapshot
697+ [ 0 ] : https://img.shields.io/github/v/release/guacsec/trustify-da- java-client ?color=green&label=latest
698+ [ 1 ] : https://img.shields.io/github/v/release/guacsec/trustify-da- java-client ?color=yellow&include_prereleases&label=snapshot
0 commit comments