Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

validator-core - refactor model to allows PCRS validation #235

Merged
merged 20 commits into from
Jul 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
5005c2d
validator-core - add fileModel.xsdSchema constraint, the correspondin…
mborne Jul 5, 2021
88de70f
review logs and fix some sonar issues (refs #231)
mborne Jul 6, 2021
38bde29
add an experimental MultiTableReader based on a GML to CSV conversion…
mborne Jul 6, 2021
d63e797
mvn formatter:format (refs #231)
mborne Jul 6, 2021
443f36f
validator-core - refactor data normalization to support MultiTable (a…
mborne Jul 7, 2021
c668219
improve logs...
mborne Jul 9, 2021
8c92246
Merge branch 'master' into issue_231
mborne Jul 9, 2021
0999358
pom.xml - 4.2.0-SNAPSHOT (refs #231)
mborne Jul 9, 2021
2f1d05e
add tables with a FeatureType on MultiTableModel + add a pre-process …
mborne Jul 9, 2021
4d02f89
travis - set locale to fr_FR.UTF-8 to test XSD messages (refs #231)
mborne Jul 11, 2021
207ebc0
travis - set locale to fr_FR.UTF-8 to test XSD messages... (refs #231)
mborne Jul 11, 2021
52c8fc7
travis - set locale to fr_FR.UTF-8 to test XSD messages... (refs #231)
mborne Jul 11, 2021
e541eae
enable table validation for tables in MultiTableModel (refs #231)
mborne Jul 12, 2021
6a2de24
review code and improve tests (refs #231)
mborne Jul 12, 2021
c1ad03c
validator-core - TableModel - add FeatureTypeRef (refs #233)
mborne Jul 12, 2021
f9124ea
rename TableModel to SingleTableModel to introduce a common TableMode…
mborne Jul 13, 2021
a037611
validator-core - TableModel - finalize FeatureType loading using an e…
mborne Jul 13, 2021
7036388
validator-core - MultiTableModel - simplify normalization and loading…
mborne Jul 13, 2021
96ede77
validator-core - MultiTableModel - adapt AttributeUniqueValidator (re…
mborne Jul 13, 2021
a878ddc
validator-core - MultiTableModel - adapt AttributeReferenceValidator …
mborne Jul 13, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ jdk:

matrix:
include:
- os: linux
dist: bionic
env:
- GDAL_VERSION: 2.4.*
- GDAL_PPA: "ppa:ubuntugis/ppa"
- os: linux
dist: bionic
env:
- GDAL_VERSION: 3.0.*
- GDAL_PPA: "ppa:ubuntugis/ubuntugis-unstable"
- os: linux
dist: bionic
env:
- GDAL_VERSION: 2.4.*
- GDAL_PPA: "ppa:ubuntugis/ppa"
- os: linux
dist: bionic
env:
- GDAL_VERSION: 3.0.*
- GDAL_PPA: "ppa:ubuntugis/ubuntugis-unstable"

notifications:
email: false
Expand All @@ -31,4 +31,4 @@ script:

cache:
directories:
- $HOME/.m2
- $HOME/.m2
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>fr.ign.validator</groupId>
<artifactId>validator</artifactId>
<packaging>pom</packaging>
<version>4.1.0-SNAPSHOT</version>
<version>4.2.0-SNAPSHOT</version>
<name>Validator</name>

<scm>
Expand Down
4 changes: 4 additions & 0 deletions travis/build-openjdk11.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ echo "-----------------------------------------------------------------------"
echo "-- Display informations"
echo "-----------------------------------------------------------------------"

# XSD validation errors
# export LANG=en_EN.UTF-8
# export LC_ALL=en_EN.UTF-8

export OGR2OGR_PATH=${OGR2OGR_PATH:-ogr2ogr}
echo "-- OGR2OGR_PATH : ${OGR2OGR_PATH}"
echo "-- GDAL_VERSION : $($OGR2OGR_PATH --version)"
Expand Down
2 changes: 1 addition & 1 deletion validator-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>fr.ign.validator</groupId>
<artifactId>validator</artifactId>
<version>4.1.0-SNAPSHOT</version>
<version>4.2.0-SNAPSHOT</version>
</parent>
<name>validator-cli</name>
<artifactId>validator-cli</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ public class Application {

public static void main(String[] args) {
CommandApplication application = new CommandApplication();
application.loadRegistredCommands();
int result = application.run(args);
LogManager.shutdown();
System.exit(result);
Expand Down
2 changes: 1 addition & 1 deletion validator-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>fr.ign.validator</groupId>
<artifactId>validator</artifactId>
<version>4.1.0-SNAPSHOT</version>
<version>4.2.0-SNAPSHOT</version>
</parent>
<artifactId>validator-core</artifactId>
<packaging>jar</packaging>
Expand Down
Loading