Skip to content

Commit f0778ab

Browse files
committed
Updates to version numbers in ReadMe. Removed the docker section until we get it working with new packaging
1 parent 0281755 commit f0778ab

File tree

1 file changed

+3
-16
lines changed

1 file changed

+3
-16
lines changed

README.md

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ built using the [Apache Maven](https://maven.apache.org/) build tool:
2727

2828
1. For use in other Java/Scala Applications, build by executing `mvn clean install`.
2929
2. For the Command Line Interface or Swing GUI, build by executing `mvn clean package`.
30-
3. For the Docker image (`nationalarchives/csv-validator:latest`), build by executing `mvn clean package -Pdocker`.
3130

3231

3332
Maven Artifacts
@@ -42,7 +41,7 @@ If you wish to use the CSV Validator from your own Java project, we provide a na
4241
<dependency>
4342
<groupId>uk.gov.nationalarchives</groupId>
4443
<artifactId>csv-validator-java-api</artifactId>
45-
<version>1.2-RC4</version>
44+
<version>1.3.0</version>
4645
</dependency>
4746
```
4847

@@ -81,7 +80,7 @@ Likewise, if you wish to use the CSV Validator from your own Scala project, the
8180
<dependency>
8281
<groupId>uk.gov.nationalarchives</groupId>
8382
<artifactId>csv-validator-core</artifactId>
84-
<version>1.2-RC4</version>
83+
<version>1.3.0</version>
8584
</dependency>
8685
```
8786

@@ -91,26 +90,14 @@ An example of using the Scala API can be found in the class `uk.gov.nationalarch
9190
`csv-validator-java-api` module. The Scala API at present gives much more control over the individual Schema Parsing and Validation Processor
9291
than the Java API.
9392

94-
Docker Container (of CSV Validator Command Line Tool)
95-
=====================================================
96-
To see the options run:
97-
```bash
98-
docker run nationalarchives/csv-validator
99-
```
100-
101-
Then for example, to validate `/tmp/my-data.csv` with `/tmp/my-schema.csvs` you would run:
102-
```bash
103-
docker run nationalarchives/csv-validator /tmp/my-data.csv /tmp/my-schema.csvs
104-
```
105-
10693
Schema Examples
10794
===============
10895
Examples of CSV Schema can be found in the test cases of the `csv-validator-core` module. See the `*.csvs` files in [acceptance/](https://github.com/digital-preservation/csv-validator/tree/master/csv-validator-core/src/test/resources/uk/gov/nationalarchives/csv/validator/acceptance). Schemas used by the Digital Preservation department at The National Archives are also available in the `example-schemas` folder of the [csv-schema](https://github.com/digital-preservation/csv-schema) repository.
10996

11097

11198
Current Limitations of the CSV Validator Tool
11299
=============================================
113-
The CSV Validator implements almost all of `CSV Schema 1.1` language, current limitations and missing functionality are:
100+
The CSV Validator implements almost all of `CSV Schema 1.2 (Draft)` language, current limitations and missing functionality are:
114101

115102
* `DateExpr` is not yet fully implemented (may raise Schema check error).
116103

0 commit comments

Comments
 (0)