Skip to content

Commit

Permalink
Merge pull request #79 from takemikami/prepare-0.1.1
Browse files Browse the repository at this point in the history
prepare 0.1.1
  • Loading branch information
takemikami authored Dec 24, 2019
2 parents a1c1baf + 84172e7 commit 7fa46ed
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ rdflint has following functions.
Download from jitpack.

```
$ wget https://jitpack.io/com/github/imas/rdflint/0.1.0/rdflint-0.1.0-all.jar
$ wget https://jitpack.io/com/github/imas/rdflint/0.1.1/rdflint-0.1.1-all.jar
```

Run for apply to your RDF files.

```
$ java -jar rdflint-0.1.0-all.jar -targetdir example/dataset
$ java -jar rdflint-0.1.1-all.jar -targetdir example/dataset
```

``-targetdir`` parameter is location of target RDF files.
Expand All @@ -58,7 +58,7 @@ jobs:
- run:
name: run rdflint
command: |
RDFLINT_VERSION=0.1.0
RDFLINT_VERSION=0.1.1
wget https://jitpack.io/com/github/imas/rdflint/$RDFLINT_VERSION/rdflint-$RDFLINT_VERSION-all.jar
java -jar rdflint-$RDFLINT_VERSION-all.jar
```
Expand All @@ -68,7 +68,7 @@ jobs:
When create a configuration file of rdflint, rdflint provide additional checks. Run with ``-config`` parameter like following.

```
$ java -jar rdflint-0.1.0-all.jar -targetdir example/dataset -config example/dataset/rdflint-config.yml
$ java -jar rdflint-0.1.1-all.jar -targetdir example/dataset -config example/dataset/rdflint-config.yml
```

``-config`` parameter is location of rdflint configuration file.
Expand Down Expand Up @@ -115,7 +115,7 @@ And run SPARQL query of ``rules-query`` to target file of ``rules-target``. Groo
Run with ``-origindir`` parameter like following.

```
$ java -jar rdflint-0.1.0-all.jar -targetdir example/dataset -origindir example/dataset_origin -config example/dataset/rdflint-config.yml
$ java -jar rdflint-0.1.1-all.jar -targetdir example/dataset -origindir example/dataset_origin -config example/dataset/rdflint-config.yml
```

And check subject and triple, removed from origindir. Its problem report as INFO level.
Expand Down Expand Up @@ -185,7 +185,7 @@ xmlns:imas="https://sparql.crssnky.xyz/imasrdf/URIs/imas-schema.ttl#"
Run interactive mode with ``-i`` parameter.

```
$ java -jar rdflint-0.1.0-all.jar -i -targetdir example/dataset -config example/dataset/rdflint-config.yml
$ java -jar rdflint-0.1.1-all.jar -i -targetdir example/dataset -config example/dataset/rdflint-config.yml
```

And try to query. Double return to perform query, type ``:exit`` to exit interactive mode.
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "rdflint: RDF Linter"
description: "RDFデータのチェックツール「rdflint」の利用ガイド"
lang: ja-JP
google_analytics: UA-150373815-1
RDFLINT_VERSION: 0.1.0
RDFLINT_VERSION: 0.1.1
cookie_consent: |
<script src="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.js" data-cfasync="false"></script>
<script>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/github/imas/rdflint/RdfLint.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

public class RdfLint {

public static final String VERSION = "0.1.0";
public static final String VERSION = "0.1.1";
private static final Logger logger = Logger.getLogger(RdfLint.class.getName());

/**
Expand Down

0 comments on commit 7fa46ed

Please sign in to comment.