Skip to content

Commit

Permalink
Basic support for CSV output format
Browse files Browse the repository at this point in the history
Still needs more features (configure output format for some cases) and
testing.
  • Loading branch information
mkroetzsch committed Mar 19, 2015
1 parent a9f676b commit ad04296
Show file tree
Hide file tree
Showing 6 changed files with 569 additions and 6 deletions.
5 changes: 5 additions & 0 deletions wdtk-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
<artifactId>wdtk-dumpfiles</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>wdtk-wikibaseapi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>wdtk-rdf</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ public class ClientConfiguration {
static {
KNOWN_ACTIONS.put("rdf", RdfSerializationAction.class);
KNOWN_ACTIONS.put("json", JsonSerializationAction.class);
KNOWN_ACTIONS.put("csv", CsvExportAction.class);
}

/**
Expand Down
Loading

0 comments on commit ad04296

Please sign in to comment.