Skip to content

Commit

Permalink
Upgrade packages maven
Browse files Browse the repository at this point in the history
  • Loading branch information
Miel Vander Sande committed Apr 11, 2018
1 parent 90908eb commit ad12261
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<name>Miel Vander Sande</name>
<email>[email protected]</email>
<url>http://semweb.mmlab.be</url>
<organization>iMinds</organization>
<organization>imec</organization>
<organizationUrl>http://imec.be</organizationUrl>
<timezone>Europe/Brussels</timezone>
</developer>
Expand All @@ -60,12 +60,12 @@
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-core</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-arq</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
Expand Down Expand Up @@ -101,7 +101,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.3.2</version>
<version>3.4</version>
<type>jar</type>
</dependency>
<dependency>
Expand All @@ -113,7 +113,7 @@
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-tdb</artifactId>
<version>3.0.0</version>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>org.rdfhdt</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public void doGet(HttpServletRequest request, HttpServletResponse response) thro
response.setHeader(HttpHeaders.SERVER, "Linked Data Fragments Server");
response.setContentType(bestMatch);
response.setCharacterEncoding(StandardCharsets.UTF_8.name());

// create a writer depending on the best matching mimeType
ILinkedDataFragmentWriter writer = LinkedDataFragmentWriterFactory.create(config.getPrefixes(), dataSources, bestMatch);

Expand All @@ -182,8 +182,9 @@ public void doGet(HttpServletRequest request, HttpServletResponse response) thro

fragment = dataSource.getRequestProcessor()
.createRequestedFragment( ldfRequest );

System.out.println("here");
writer.writeFragment(response.getOutputStream(), dataSource, fragment, ldfRequest);
System.out.println("not here");

} catch (DataSourceNotFoundException ex) {
try {
Expand Down

0 comments on commit ad12261

Please sign in to comment.