Skip to content

Commit

Permalink
Merge branch 'master' of github.com:tabulapdf/tabula-java
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremybmerrill committed Sep 1, 2016
2 parents 2e6b147 + 931b9ee commit 6cea699
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Download a version of the tabula-java's jar, with all dependencies included, tha
`tabula-java` provides a command line application:

```
$ java -jar ./target/tabula-0.9.0-jar-with-dependencies.jar --help
$ java -jar ./target/tabula-0.9.1-jar-with-dependencies.jar --help
usage: tabula [-a <AREA>] [-c <COLUMNS>] [-d] [-f <FORMAT>] [-g] [-h] [-i]
[-n] [-o <OUTFILE>] [-p <PAGES>] [-r] [-s <PASSWORD>] [-u] [-v]
Expand Down Expand Up @@ -55,7 +55,7 @@ Tabula helps you extract tables from PDFs
```

It also includes a debugging tool, run `java -cp ./target/tabula-0.9.0-jar-with-dependencies.jar technology.tabula.debug.Debug -h` for the available options.
It also includes a debugging tool, run `java -cp ./target/tabula-0.9.1-jar-with-dependencies.jar technology.tabula.debug.Debug -h` for the available options.

You can also integrate `tabula-java` with any JVM language. For Java examples, see the [`tests`](src/test/java/technology/tabula/) folder.

Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>technology.tabula</groupId>
<artifactId>tabula</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
<name>Tabula</name>
<description>Extract tables from PDF files</description>
<url>http://github.com/tabulapdf/tabula-java</url>
Expand Down Expand Up @@ -36,7 +36,7 @@
<connection>scm:git:git@github.com:tabulapdf/tabula-java.git</connection>
<developerConnection>scm:git:git@github.com:tabulapdf/tabula-java.git</developerConnection>
<url>git@github.com:tabulapdf/tabula-java.git</url>
<tag>tabula-0.9.0</tag>
<tag>tabula-0.9.1</tag>
</scm>

<repositories>
Expand All @@ -58,9 +58,9 @@
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<reporting>
Expand Down Expand Up @@ -234,7 +234,7 @@
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>1.8.10</version>
<version>1.8.12</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/technology/tabula/CommandLineApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

public class CommandLineApp {

private static String VERSION = "0.9.0";
private static String VERSION = "0.9.1";
private static String VERSION_STRING = String.format("tabula %s (c) 2012-2016 Manuel Aristarán", VERSION);
private static String BANNER = "\nTabula helps you extract tables from PDFs\n\n";

Expand Down

0 comments on commit 6cea699

Please sign in to comment.