Skip to content

Commit

Permalink
[Upd] Update to Spring Boot 3.3.1 and JOPA 2.0.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
ledsoft committed Jul 15, 2024
1 parent 07c8ea6 commit aca5cff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.5</version>
<version>3.3.1</version>
</parent>

<artifactId>termit</artifactId>
Expand All @@ -31,7 +31,7 @@
<org.apache.tika.tika-core.version>2.7.0</org.apache.tika.tika-core.version>
<org.mapstruct.version>1.5.5.Final</org.mapstruct.version>
<org.springdoc.version>2.2.0</org.springdoc.version>
<cz.cvut.kbss.jopa.version>2.0.0</cz.cvut.kbss.jopa.version>
<cz.cvut.kbss.jopa.version>2.0.2</cz.cvut.kbss.jopa.version>
<cz.cvut.kbss.jsonld.version>0.14.3</cz.cvut.kbss.jsonld.version>

<!-- Default value for deployment type property which should otherwise specified on command line -->
Expand Down Expand Up @@ -112,7 +112,7 @@
<dependency>
<groupId>org.eclipse.rdf4j</groupId>
<artifactId>rdf4j-rio-rdfxml</artifactId>
<version>4.3.11</version>
<version>5.0.0</version>
</dependency>

<!-- Spring declarative transactions with JOPA -->
Expand Down Expand Up @@ -437,8 +437,6 @@
<version>1.13.1</version>
<configuration>
<complianceLevel>${java.version}</complianceLevel>
<source>${java.version}</source>
<target>${java.version}</target>
<aspectLibraries>
<aspectLibrary>
<groupId>org.springframework</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private Optional<Resource> invokeTextAnalysisService(TextAnalysisInput input) {
}
final HttpHeaders headers = new HttpHeaders();
headers.add(HttpHeaders.ACCEPT, MediaType.APPLICATION_XML_VALUE);
LOG.debug("Invoking text analysis service on input: {}", input);
LOG.debug("Invoking text analysis service at '{}' on input: {}", config.getTextAnalysis().getUrl(), input);
final ResponseEntity<Resource> resp = restClient
.exchange(config.getTextAnalysis().getUrl(), HttpMethod.POST,
new HttpEntity<>(input, headers), Resource.class);
Expand Down

0 comments on commit aca5cff

Please sign in to comment.