Skip to content

Commit

Permalink
Release 0.4.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
khituras committed Jun 7, 2021
1 parent 54cf99a commit 1c13dcf
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion jcore-pipeline-builder-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>de.julielab</groupId>
<artifactId>jcore-pipeline-modules</artifactId>
<version>0.4.3-SNAPSHOT</version>
<version>0.4.3</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion jcore-pipeline-builder-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>de.julielab</groupId>
<artifactId>jcore-pipeline-modules</artifactId>
<version>0.4.3-SNAPSHOT</version>
<version>0.4.3</version>
</parent>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>jcore-pipeline-runner</artifactId>
<groupId>de.julielab</groupId>
<version>0.4.3-SNAPSHOT</version>
<version>0.4.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion jcore-pipeline-runner/jcore-pipeline-runner-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>jcore-pipeline-runner</artifactId>
<groupId>de.julielab</groupId>
<version>0.4.3-SNAPSHOT</version>
<version>0.4.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion jcore-pipeline-runner/jcore-pipeline-runner-cpe/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>jcore-pipeline-runner</artifactId>
<groupId>de.julielab</groupId>
<version>0.4.3-SNAPSHOT</version>
<version>0.4.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,13 @@ public synchronized void entityProcessComplete(CAS aCas, EntityProcessStatus aSt
LOGGER.debug("Document with ID {} finished processing.", docId);
} else {
String filename = "pipeline-error-" + docId + ".err";
LOGGER.error("Exception occurred while processing document with ID {}: {} Writing error message to {}", docId, aStatus.getExceptions(), filename);
LOGGER.error("Components failed: {}", aStatus.getFailedComponentNames());
LOGGER.error("Error message: {}", aStatus.getStatusMessage());
LOGGER.error("Process trace: {}", aStatus.getProcessTrace().toString());
LOGGER.error("Last exception: ", aStatus.getExceptions().get(0));
if (multiplierUriList != null)
LOGGER.error("This CAS was created for a multiplier. The following URIs are contained: {}", multiplierUriList.stream().map(JCoReURI::getUri).collect(Collectors.toList()));
LOGGER.error("Exception occurred while processing document with ID {}: {} Writing error message to {}", docId, aStatus.getExceptions(), filename);
final String log = createLog(aStatus, multiplierUriList);
try (BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(filename), StandardCharsets.UTF_8))) {
bw.write(log);
Expand Down
2 changes: 1 addition & 1 deletion jcore-pipeline-runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>jcore-pipeline-modules</artifactId>
<groupId>de.julielab</groupId>
<version>0.4.3-SNAPSHOT</version>
<version>0.4.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<artifactId>jcore-pipeline-modules</artifactId>
<packaging>pom</packaging>
<version>0.4.3-SNAPSHOT</version>
<version>0.4.3</version>
<parent>
<groupId>de.julielab</groupId>
<artifactId>jcore-base</artifactId>
Expand Down

0 comments on commit 1c13dcf

Please sign in to comment.