File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
src/main/java/fr/inria/corese/command/utils/http Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11name : " Sphinx: Render production docs"
2- run-name : ${{ github.actor }} has launched CI process on ${{ github.ref_name }}
2+ run-name : ${{ github.actor }} triggered docs render
33
44on :
55 push :
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ dependencies {
6868 implementation(" info.picocli:picocli:4.7.6" ) // Library for building a Command-Line Interface (CLI)
6969 implementation(" org.apache.commons:commons-lang3:3.17.0" ) // Library for utility functions (e.g., StringUtils)
7070 implementation(" com.github.jsonld-java:jsonld-java:0.13.6" ) // Library for JSON-LD support
71- implementation(" jakarta.ws.rs:jakarta.ws.rs-api:4 .0.0" ) // Jakarta REST API specifications
71+ implementation(" jakarta.ws.rs:jakarta.ws.rs-api:3 .0.0" ) // Jakarta REST API specifications
7272 implementation(" jakarta.activation:jakarta.activation-api:2.1.3" ) // Jakarta Activation API
7373 implementation(" fr.com.hp.hpl.jena.rdf.arp:arp:2.2.b" ) // Jena implementation for RDF parsing
7474 implementation(" org.slf4j:slf4j-api:2.0.16" ) // Simple Logging Facade for Java (SLF4J)
Original file line number Diff line number Diff line change 77import java .util .LinkedHashMap ;
88import java .util .List ;
99import java .util .Map ;
10+ import java .util .stream .Collectors ;
1011
1112import org .apache .commons .lang3 .tuple .Pair ;
1213
@@ -157,7 +158,8 @@ public void printResponse(Response response) {
157158 err .println ("\n ► HEADERS" );
158159 for (Map .Entry <String , List <Object >> entry : headers .entrySet ()) {
159160 String key = normalizeHeaderKey (entry .getKey ());
160- String value = String .join (", " , entry .getValue ().stream ().map (Object ::toString ).toList ());
161+ String value = String .join (", " ,
162+ entry .getValue ().stream ().map (Object ::toString ).collect (Collectors .toList ()));
161163 err .println (" " + key + ": " + value );
162164 }
163165 }
You can’t perform that action at this time.
0 commit comments