File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/main/java/org/w3/ldp/testsuite/mapper Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 7676 <version >3.14.1</version >
7777 <configuration >
7878 <encoding >${project.build.sourceEncoding} </encoding >
79- <source >1.8 </source >
80- <target >1.8 </target >
79+ <source >17 </source >
80+ <target >17 </target >
8181 </configuration >
8282 </plugin >
8383 <plugin >
259259 <dependency >
260260 <groupId >org.apache.jena</groupId >
261261 <artifactId >jena-arq</artifactId >
262- <version >3.17 .0</version >
262+ <version >5.6 .0</version >
263263 </dependency >
264264 <dependency >
265265 <groupId >org.rendersnake</groupId >
Original file line number Diff line number Diff line change 1414
1515import org .apache .jena .rdf .model .Model ;
1616import org .apache .jena .rdf .model .ModelFactory ;
17- import org .apache .jena .rdf .model .RDFWriter ;
17+ import org .apache .jena .rdf .model .RDFWriterI ;
1818import com .jayway .restassured .mapper .ObjectMapper ;
1919import com .jayway .restassured .mapper .ObjectMapperDeserializationContext ;
2020import com .jayway .restassured .mapper .ObjectMapperSerializationContext ;
@@ -62,7 +62,7 @@ public Object serialize(ObjectMapperSerializationContext context) {
6262 ByteArrayOutputStream out = new ByteArrayOutputStream ();
6363
6464 String lang = getLang (context .getContentType ());
65- RDFWriter rdfWriter = model .getWriter (lang );
65+ RDFWriterI rdfWriter = model .getWriter (lang );
6666 rdfWriter .setProperty ("relativeURIs" , "same-document" );
6767 rdfWriter .setProperty ("allowBadURIs" , "true" );
6868 rdfWriter .write (model , out , baseURI );
You can’t perform that action at this time.
0 commit comments