Skip to content

Commit

Permalink
- CHG: Updated dependencies.
Browse files Browse the repository at this point in the history
- FIX: Fixed small bug with trials data import.
  • Loading branch information
sebastian-raubach committed Jun 14, 2022
1 parent b2f343d commit 33f1506
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 36 deletions.
79 changes: 44 additions & 35 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
compile fileTree(dir: 'lib', include: ['*.jar'])

implementation 'cisd:jhdf5:19.04.0'
implementation 'org.jooq:jooq:3.11.10'
implementation 'org.jooq:jooq:3.16.6'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'mysql:mysql-connector-java:8.0.28'
implementation 'org.dhatim:fastexcel-reader:0.12.14'
Expand Down
Binary file modified lib/germinate-codegen-4.3.0.jar
Binary file not shown.
Binary file modified lib/germinate-core-4.3.0.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,10 @@ protected void checkMetadataLabels(Sheet s)
if (StringUtils.isEmpty(name))
addImportResult(ImportStatus.GENERIC_MISSING_REQUIRED_VALUE, index, "Title");
}
else
{
addImportResult(ImportStatus.GENERIC_MISSING_REQUIRED_VALUE, -1, "Missing 'Title' on 'METADATA' sheet.");
}

index = metadataLabelToRowIndex.get("Description");
if (index != null)
Expand All @@ -322,6 +326,10 @@ protected void checkMetadataLabels(Sheet s)
if (StringUtils.isEmpty(description))
addImportResult(ImportStatus.GENERIC_MISSING_REQUIRED_VALUE, index, "Description");
}
else
{
addImportResult(ImportStatus.GENERIC_MISSING_REQUIRED_VALUE, -1, "Missing 'Description' on 'METADATA' sheet.");
}
}
catch (IOException e)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import org.jooq.*;

import java.io.*;
import java.io.File;
import java.math.BigDecimal;
import java.sql.Date;
import java.sql.*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import org.jooq.*;

import java.io.*;
import java.io.File;
import java.sql.*;
import java.util.*;

Expand Down

0 comments on commit 33f1506

Please sign in to comment.